.wef-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    background: none;
    border: 1px solid #f9f9f9;
    border-radius: 5px;
}

.wef-form-group {
    margin-bottom: 20px;
}

.wef-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.wef-form-group input[type="text"],
.wef-form-group input[type="number"],
.wef-form-group input[type="date"],
.wef-form-group select,
.wef-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.wef-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

#wef-submit-btn {
    background: #158383;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

#wef-submit-btn:hover {
    background: #028999;
}

#wef-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#wef-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

#wef-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#wef-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wef-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wef-budget-container {
    width: 100%;
}

.wef-budget-slider {
    width: 100%;
}

.wef-budget-value {
    min-width: 80px;
    font-weight: bold;
    color: #005086;
    text-align: right;
}

.wef-form-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.wef-form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #005086;
    cursor: pointer;
}

.wef-form-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #005086;
    cursor: pointer;
    border: none;
}

/* Add to style.css */
.wef-features-group {
    margin-bottom: 20px;
}

.wef-features-container {
    display: flex;
    flex-direction: column; /* Stack vertically */
    gap: 10px; /* Reduced gap for stacked layout */
    margin-top: 10px;
    width: 100%; /* Ensure container takes full width */
}

.wef-feature-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px; 
    border: 2px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%; 
    box-sizing: border-box; 
}

.wef-feature-checkbox:hover {
    background: #f0f0f0;
}

.wef-feature-checkbox input[type="checkbox"] {
    margin: 0;
}

.wef-feature-checkbox.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.wef-feature-checkbox.available {
    border-color: #005086;
    background: #f0f8ff;
}

.wef-feature-checkbox.selected {
    border-color: #005086;
    background: #e6f3ff;
}

.wef-feature-label {
    font-weight: normal;
    margin: 0;
    cursor: pointer;
    flex-grow: 1;
}

.wef-feature-checkbox.disabled .wef-feature-label {
    cursor: not-allowed;
}

/* Multi-step form styles */
.wef-form-part {
    transition: opacity 0.3s ease;
}

.wef-proceed-btn {
    background: #007cba;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    width: 100%;
}

.wef-proceed-btn:hover {
    background: #005a87;
}

.wef-proceed-btn.disabled {
    background: #ccc !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.wef-proceed-btn.disabled:hover {
    background: #ccc;
}

.wef-back-btn {
    background: #6c757d;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    margin-right: 10px;
}

.wef-back-btn:hover {
    background: #545b62;
}

.wef-form-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wef-form-buttons button {
    flex: 1;
    margin: 0 5px;
}

.wef-form-buttons button:first-child {
    margin-left: 0;
}

.wef-form-buttons button:last-child {
    margin-right: 0;
}

/* Add this to your existing CSS */
.wef-feature-checkbox.available {
    border-color: #005086;
    background: #e6f3ff; /* Slightly darker blue to indicate selection */
}

.wef-feature-checkbox.selected {
    border-color: #005086;
    background: #e6f3ff;
    position: relative;
}

/* Optional: Add a checkmark indicator for selected features */
.wef-feature-checkbox.selected::after {
    content: "✓";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #005086;
    font-weight: bold;
    font-size: 16px;
}

/* Add to style.css */
.wef-terms-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    transition: background 0.3s ease;
}

.wef-terms-label:hover {
    background: #f0f0f0;
}

.wef-terms-label input[type="checkbox"] {
    margin: 0;
}

.wef-terms-label a {
    color: #007cba;
    text-decoration: none;
}

.wef-terms-label a:hover {
    text-decoration: underline;
}

/* Add to style.css */
.wef-payment-status {
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
}
.wef-status-pending { background: #f0ad4e; color: white; }
.wef-status-paid { background: #5bc0de; color: white; }
.wef-status-processing { background: #0275d8; color: white; }
.wef-status-completed { background: #5cb85c; color: white; }
.wef-status-refunded { background: #d9534f; color: white; }

#wef-progress-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.wef-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    position: relative;
}
.wef-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}
.wef-close:hover {
    color: #000;
}

.wef-progression-status {
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    background: #6c757d;
    color: white;
    font-size: 11px;
    text-transform: uppercase;
}

/* User Profile Styles */
.wef-user-profile {
    max-width: 800px;
    margin: 10px auto;
    padding: 10px;
    background: #f9f9f9;
    border: 0px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: none;
}

.wef-user-profile h6 {
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.wef-enquiries-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wef-enquiry-card {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 25px;
    transition: all 0.3s ease;
}

.wef-enquiry-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.wef-enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.wef-enquiry-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wef-enquiry-date {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin-left: 10px;
}

.wef-progress-indicators {
    display: flex;
    gap: 10px;
}

.wef-detail-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.wef-detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wef-detail-section h4 {
    color: #444;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.wef-detail-row {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
}

.wef-detail-row:last-child {
    margin-bottom: 0;
}

.wef-detail-label {
    min-width: 180px;
    font-weight: 600;
    color: #555;
    flex-shrink: 0;
}

.wef-detail-value {
    color: #333;
    flex-grow: 1;
}

.wef-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wef-features-list li {
    background: #e6f3ff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #005086;
    border: 1px solid #cce5ff;
}

.wef-progress-notes {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #007cba;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.wef-enquiry-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wef-pay-button {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 16px;
}

.wef-pay-button:hover {
    background: #218838 !important;
    border-color: #1e7e34 !important;
}

.wef-contact-support {
    background: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
}

.wef-contact-support:hover {
    background: #5a6268 !important;
    border-color: #545b62 !important;
}

.wef-no-enquiries, .wef-login-required {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px dashed #dee2e6;
}

.wef-no-enquiries p, .wef-login-required p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.wef-no-enquiries .button, .wef-login-required a {
    display: inline-block;
    margin: 5px;
}

/* Contact Modal */
#wef-contact-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

#wef-contact-modal .wef-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    position: relative;
    border-radius: 8px;
}

#wef-contact-modal .wef-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    margin-top: -10px;
}

#wef-contact-modal .wef-close:hover {
    color: #000;
}

#wef-contact-modal .wef-form-group {
    margin-bottom: 20px;
}

#wef-contact-modal label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

#wef-contact-modal input[type="text"],
#wef-contact-modal textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

#wef-contact-modal textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .wef-user-profile {
        padding: 20px;
        margin: 20px auto;
    }
    
    .wef-enquiry-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .wef-progress-indicators {
        width: 100%;
        justify-content: flex-start;
    }
    
    .wef-detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .wef-detail-label {
        min-width: auto;
    }
    
    .wef-enquiry-actions {
        flex-direction: column;
    }
    
    .wef-enquiry-actions .button {
        width: 100%;
        text-align: center;
    }
}

/* Support History Styles */
.wef-support-history {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-request {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
}

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.support-status {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.support-status.open { background: #f0ad4e; color: white; }
.support-status.in_progress { background: #0275d8; color: white; }
.support-status.resolved { background: #5cb85c; color: white; }
.support-status.closed { background: #d9534f; color: white; }

.support-date {
    color: #666;
    font-size: 12px;
}

.support-message, .admin-reply {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
}

.support-message {
    background: #f8f9fa;
    border-left: 4px solid #007cba;
}

.admin-reply {
    background: #e6f3ff;
    border-left: 4px solid #28a745;
}

.admin-reply small {
    color: #666;
    font-style: italic;
}

.wef-user-profile {
    max-width: 800px;
    margin: 10px auto;
    padding: 10px;
    background: #f9f9f9;
    border: 0px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: none;
}

.wef-user-profile h6 {
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.wef-enquiries-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wef-enquiry-card {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 25px;
    transition: all 0.3s ease;
}

.wef-enquiry-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.wef-enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.wef-enquiry-header h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wef-enquiry-date {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin-left: 10px;
}

.wef-progress-indicators {
    display: flex;
    gap: 10px;
}

.wef-detail-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.wef-detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wef-detail-section h4,
.wef-detail-section h6 {
    color: #444;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.wef-detail-row {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
}

.wef-detail-row:last-child {
    margin-bottom: 0;
}

.wef-detail-label {
    min-width: 180px;
    font-weight: 600;
    color: #555;
    flex-shrink: 0;
}

.wef-detail-value {
    color: #333;
    flex-grow: 1;
}

.wef-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wef-features-list li {
    background: #e6f3ff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #005086;
    border: 1px solid #cce5ff;
}

.wef-progress-notes {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #007cba;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.wef-enquiry-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wef-pay-button {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 16px;
}

.wef-pay-button:hover {
    background: #218838 !important;
    border-color: #1e7e34 !important;
}

.wef-contact-support {
    background: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
}

.wef-contact-support:hover {
    background: #5a6268 !important;
    border-color: #545b62 !important;
}

.wef-no-enquiries, .wef-login-required {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px dashed #dee2e6;
}

.wef-no-enquiries p, .wef-login-required p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.wef-no-enquiries .button, .wef-login-required a {
    display: inline-block;
    margin: 5px;
}

/* Contact Modal */
#wef-contact-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

#wef-contact-modal .wef-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    position: relative;
    border-radius: 8px;
}

#wef-contact-modal .wef-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    margin-top: -10px;
}

#wef-contact-modal .wef-close:hover {
    color: #000;
}

#wef-contact-modal .wef-form-group {
    margin-bottom: 20px;
}

#wef-contact-modal label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

#wef-contact-modal input[type="text"],
#wef-contact-modal textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

#wef-contact-modal textarea {
    resize: vertical;
    min-height: 120px;
}

/* Support History Styles */
.wef-support-history {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-request {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
}

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.support-status {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.support-status.open { background: #f0ad4e; color: white; }
.support-status.in_progress { background: #0275d8; color: white; }
.support-status.resolved { background: #5cb85c; color: white; }
.support-status.closed { background: #d9534f; color: white; }

.support-date {
    color: #666;
    font-size: 12px;
}

.support-message, .admin-reply {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
}

.support-message {
    background: #f8f9fa;
    border-left: 4px solid #007cba;
}

.admin-reply {
    background: #e6f3ff;
    border-left: 4px solid #28a745;
}

.admin-reply small {
    color: #666;
    font-style: italic;
}

/* Responsive styles */
@media (max-width: 768px) {
    .wef-user-profile {
        padding: 20px;
        margin: 20px auto;
    }
    
    .wef-enquiry-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .wef-progress-indicators {
        width: 100%;
        justify-content: flex-start;
    }
    
    .wef-detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .wef-detail-label {
        min-width: auto;
    }
    
    .wef-enquiry-actions {
        flex-direction: column;
    }
    
    .wef-enquiry-actions .button {
        width: 100%;
        text-align: center;
    }
    
    .support-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Add to existing support status styles */
.support-status.replied { background: #5bc0de; color: white; }

/* Add to existing wef-support-status styles if they exist */
.wef-status-replied { background: #5bc0de; color: white; }

/* Section Toggle Styles */
.wef-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.wef-section-header:hover {
    background-color: #e9e9e9;
}

.wef-section-header h4,
.wef-section-header h6 {
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.wef-toggle-icon {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
    margin-left: 10px;
    display: inline-block;
    width: 20px;
    text-align: center;
}

.wef-detail-section.collapsed .wef-section-header .wef-toggle-icon {
    transform: rotate(-90deg);
}

.wef-section-content {
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Toggle Controls */
.wef-toggle-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.wef-expand-all,
.wef-collapse-all {
    background: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
    padding: 8px 15px !important;
    font-size: 14px !important;
}

.wef-expand-all:hover,
.wef-collapse-all:hover {
    background: #5a6268 !important;
    border-color: #545b62 !important;
}

/* Responsive styles for toggles */
@media (max-width: 768px) {
    .wef-section-header {
        padding: 8px 12px;
    }
    
    .wef-toggle-controls {
        flex-direction: column;
    }
    
    .wef-expand-all,
    .wef-collapse-all {
        width: 100%;
        text-align: center;
    }
}

/* Ensure smooth transitions for content */
.wef-section-content {
    transition: all 0.3s ease;
    overflow: hidden;
}