.ptfw-wrapper {
    margin: 20px 0;
    width: 100%;
}

.ptfw-button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.ptfw-option-btn {
    flex: 1;
    width: 50%;
    padding: 20px 0px !important;
    border: 2px solid #333 !important;
    background-color: #fff !important;
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    text-transform: uppercase;
    line-height: 0 !important;
}

.ptfw-option-btn:hover {
    border-color: #c9302c !important;
    background-color: #fff !important;
    color: #c9302c !important;
}

.ptfw-option-btn.active {
    border-color: #c9302c !important;
    background-color: #c9302c !important;
    color: #fff !important;
}

/* Mobile responsive - stack buttons vertically */
@media screen and (max-width: 768px) {
    .ptfw-button-group {
        flex-direction: column;
        gap: 10px;
    }

    .ptfw-option-btn {
        width: 100% !important;
    }
}

#ptfw_text {
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    display: none;
}