﻿/**
 * Pricing Features CSS
 * Extracted styles for pricing rule management, requirements modal, field charges,
 * guest share, and related UI components.
 * 
 * Created: February 2026
 */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    --brand-primary: #007A4F;
    --brand-primary-light: #00BE7C;
    --brand-primary-hover: #00a86b;
    --brand-primary-bg: rgba(0, 190, 124, 0.1);
    --text-dark: #010C22;
    --text-secondary: #1E1E1E;
    --text-muted: #99A5A1;
    --text-gray: #6b7280;
    --text-label: #374151;
    --border-color: #e5e7eb;
    --border-input: #AEBBB6;
    --background-light: #FBFBFB;
    --background-warning: #FEF8E6;
    --warning-border: #FFE6AF;
    --warning-text: #664D23;
    --toast-bg: #1a1a2e;
    --error-color: #dc3545;
    --success-color: #28a745;
    --modal-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.app-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--toast-bg);
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.app-toast.toast-animate-in {
    animation: toastSlideIn 0.3s ease;
}

.app-toast.toast-animate-out {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.app-toast .toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-toast .toast-text {
    font-size: 14px;
    font-weight: 500;
}

/* Toast positioned at bottom center */
.app-toast-bottom {
    top: auto;
    bottom: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

/* ==========================================================================
   SHARE MODAL STYLES
   ========================================================================== */
.share-modal-body {
    padding: 40px;
    text-align: center;
}

.share-modal-title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.share-link-container {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.share-link-input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    color: #666;
    background: #fff;
    outline: none;
}

.share-link-input:focus {
    outline: none;
}

.copy-link-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    background: #fff;
    border: none;
    border-left: 1px solid #e0e0e0;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.copy-link-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.copy-link-btn svg {
    width: 18px;
    height: 18px;
}

.share-modal-buttons {
    display: flex;
    gap: 80px;
    justify-content: center;
}

.btn-change-password {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #fff;
    color: var(--brand-primary);
    border: 1.5px solid var(--brand-primary);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-password {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--brand-primary-light);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-password:hover {
    background: var(--brand-primary-hover);
}

@media (max-width: 480px) {
    .share-modal-body {
        padding: 24px 16px;
    }
    
    .share-modal-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-change-password,
    .btn-view-password {
        width: 100%;
    }
    
    .share-link-container {
        flex-direction: column;
    }
    
    .copy-link-btn {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   CHANGE PASSWORD MODAL STYLES
   ========================================================================== */
.change-password-modal {
    padding: 40px;
}

.change-password-title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 8px;
    line-height: 100%;
    letter-spacing: 0%;
}

.change-password-subtitle {
    font-size: 16px;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

.change-password-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
    line-height: 100%;
    letter-spacing: 0%;
}

.change-password-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-input);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
    background: #fff;
    transition: border-color 0.2s;
}

.change-password-input:focus {
    outline: none;
    border-color: var(--brand-primary-light);
}

.change-password-input::placeholder {
    color: #999;
}

.change-password-input.is-invalid {
    border-color: var(--error-color);
}

.change-password-warning {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: var(--background-warning);
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid var(--warning-border);
}

.change-password-warning-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.change-password-warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.change-password-warning-content {
    font-size: 12px;
    line-height: 1.5;
    color: var(--warning-text);
}

.change-password-warning-title {
    font-weight: 600;
    font-size: 13px;
    color: var(--warning-text);
}

.change-password-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--brand-primary-light);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.change-password-btn:hover {
    background: var(--brand-primary-hover);
}

.change-password-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-group-cp {
    margin-bottom: 16px;
}

.invalid-feedback-cp {
    color: var(--error-color);
    font-size: 12px;
    margin-top: 6px;
}

@media (max-width: 480px) {
    .change-password-modal {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   SET PASSWORD MODAL STYLES
   ========================================================================== */
.set-password-modal {
    padding: 40px;
    text-align: center;
}

.set-password-title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.set-password-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.set-password-form-group {
    margin-bottom: 16px;
    text-align: left;
}

.set-password-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

.set-password-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-input);
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
}

.set-password-input:focus {
    outline: none;
    border-color: var(--brand-primary-light);
}

.set-password-input::placeholder {
    color: var(--text-muted);
}

.set-password-input.is-invalid {
    border-color: var(--error-color);
}

.set-password-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--brand-primary-light);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.set-password-btn:hover {
    background: var(--brand-primary-hover);
}

.set-password-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.invalid-feedback-sp {
    color: var(--error-color);
    font-size: 12px;
    margin-top: 6px;
}

@media (max-width: 480px) {
    .set-password-modal {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   VIEW PASSWORD MODAL STYLES
   ========================================================================== */
.view-password-modal {
    padding: 40px;
    text-align: center;
}

.view-password-title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.view-password-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.view-password-container {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.view-password-input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
}

.view-password-input:focus {
    outline: none;
}

.view-password-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    background: #fff;
    border: none;
    border-left: 1px solid #e0e0e0;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.view-password-copy-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.view-password-copy-btn svg {
    width: 18px;
    height: 18px;
}

.view-password-change-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--brand-primary-light);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.view-password-change-btn:hover {
    background: var(--brand-primary-hover);
}

@media (max-width: 480px) {
    .view-password-modal {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   REQUIREMENTS MODAL STYLES
   ========================================================================== */
.requirements-modal-dialog {
    max-width: 900px;
}

.requirements-modal-content {
    border-radius: 8px;
    padding: 40px;
    border: none;
    box-shadow: var(--modal-shadow);
}

.requirements-modal-header {
    border-bottom: none;
    padding: 24px 32px 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.requirements-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.btn-close-requirements {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 2px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-label);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close-requirements:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.btn-close-requirements i {
    font-size: 18px;
}

.requirements-modal-body {
    padding: 24px 32px;
    background: var(--background-light);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.requirements-column {
    padding-right: 32px;
    border-right: 1px solid var(--border-color);
}

.requirements-column:last-child {
    border-right: none;
    padding-right: 0;
}

.requirements-column-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding-bottom: 12px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 5px;
}

.requirements-list-item-bullet {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

.requirements-list-item-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

.requirements-subsection-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-label);
    margin-bottom: 8px;
    margin-top: 12px;
}

.requirements-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-gray);
}

.requirements-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.requirements-modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.btn-copy-clipboard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 100px;
    border: 1.5px solid var(--brand-primary-light);
    border-radius: 50px;
    background: transparent;
    color: var(--brand-primary-light);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-clipboard:hover {
    background: var(--brand-primary-light);
    color: white;
}

.btn-copy-clipboard i {
    font-size: 18px;
}

.btn-download-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 100px;
    border: none;
    border-radius: 50px;
    background: var(--brand-primary-light);
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-download-pdf:hover {
    background: var(--brand-primary-hover);
}

.btn-download-pdf i {
    font-size: 18px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin-icon {
    font-size: 18px;
    animation: spin 1s linear infinite;
}

.requirements-column-last {
    border-right: none;
    padding-right: 0;
}

.requirements-toast {
    background: #1f2937;
    min-width: 200px;
}

.requirements-toast .toast-icon {
    font-size: 20px;
    color: var(--brand-primary-light);
}

.requirements-toast.toast-error {
    background: #dc2626;
}

.requirements-toast.toast-error .toast-icon {
    color: #fff;
}

@media (max-width: 768px) {
    .requirements-modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-column {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .requirements-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .requirements-modal-footer {
        flex-direction: column;
    }
    
    .requirements-modal-footer button {
        width: 100%;
        padding: 12px 20px;
    }
}

/* ==========================================================================
   EXTRA REQUIREMENT FORM STYLES
   ========================================================================== */
.extra-requirement-form-label,
.extra-requirement-label-p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--brand-primary);
}

.custom-charge-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    margin-left: auto;
}

.custom-charge-tooltip .tooltip-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--poppins-font);
    background: var(--brand-primary-bg);
    min-width: 86px;
    height: 32px;
    border-radius: 8px;
    padding: 4px 8px;
    justify-content: center;
}

.custom-charge-tooltip .tooltip-trigger .info-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-charge-tooltip .tooltip-trigger .info-icon svg {
    width: 16px;
    height: 16px;
}

.custom-charge-tooltip .tooltip-content {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #181D27;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--poppins-font);
    line-height: 18px;
    letter-spacing: 0%;
    white-space: normal;
    width: max-content;
    max-width: 395px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-charge-tooltip .tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.custom-charge-tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

.custom-charge-tooltip.paid-charge .tooltip-trigger {
    color: var(--brand-primary);
    background: rgba(40, 167, 69, 0.1);
}

/* ==========================================================================
   CUSTOMER SEARCH AUTOCOMPLETE STYLES
   ========================================================================== */
.customer-search-input {
    position: relative;
    display: flex;
    align-items: center;
}

.customer-search-input .search-icon {
    position: absolute;
    left: 16px;
    color: #9CA3AF;
    font-size: 18px;
    z-index: 1;
}

.customer-search-input .form-control {
    width: 100%;
    height: 48px;
    padding: 12px 40px 12px 44px;
    border: 1px solid var(--brand-primary-light);
    border-radius: 24px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.customer-search-input .form-control:focus {
    border-color: var(--brand-primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 190, 124, 0.1);
}

.customer-search-input .form-control::placeholder {
    color: #9CA3AF;
}

.customer-search-input .clear-search {
    position: absolute;
    right: 16px;
    color: #9CA3AF;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s;
}

.customer-search-input .clear-search:hover {
    color: #333;
}

.customer-search-input .form-control::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.search-autocomplete-wrapper {
    position: relative;
}

.search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    margin-top: 4px;
    overflow: hidden;
    padding: 24px;
    gap: 24px;
}

.search-suggestions.show {
    display: block;
}

.suggestions-header {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #292D32;
    font-family: var(--poppins-font);
    line-height: 100%;
    letter-spacing: 0%;
}

.suggestions-list {
    max-height: 320px;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
    gap: 12px;
    border-bottom: 0.5px solid #E5E5E5;
}

.suggestion-item:hover {
    background: #F4FFFB;
}

.suggestion-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FECACA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.suggestion-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggestion-avatar svg {
    width: 22px;
    height: 22px;
}

.suggestion-avatar .initials {
    font-size: 14px;
    font-weight: 600;
    color: #92400E;
}

.suggestion-info {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    font-size: 14px;
    font-weight: 500;
    color: #010307;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--poppins-font);
    width: 165px;
    height: 21px;
}

.suggestion-phone {
    font-size: 12px;
    font-weight: 400;
    color: #292D32;
    line-height: 100%;
    font-family: var(--poppins-font);
}

.suggestion-loading,
.suggestion-empty {
    padding: 20px;
    text-align: center;
    color: var(--text-gray);
}

/* ==========================================================================
   PAGINATION STYLES
   ========================================================================== */
.pagination-custom .page-link {
    background-color: #ffffff;
    color: #000;
    border: 1px solid #001e14;
}

.pagination-custom .page-item.active .page-link {
    background-color: var(--brand-primary-light);
    color: #ffffff;
    border: 1px solid #001e14;
}

.pagination-custom .page-link:hover {
    background-color: var(--brand-primary-light);
}

/* ==========================================================================
   REQUIREMENTS REVIEW CONTAINER STYLES
   ========================================================================== */
.requirements-review-container {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.requirements-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.requirements-review-header h2 {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 100%;
    letter-spacing: -2%;
    color: var(--text-dark);
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-proceed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--brand-primary-light);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-proceed:hover {
    background: var(--brand-primary-hover);
    color: #fff;
}

.more-menu {
    position: relative;
}

.more-btn {
    background: none;
    border: 0.5px solid var(--brand-primary);
    padding: 12px 20px;
    cursor: pointer;
    color: var(--brand-primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.more-btn:hover {
    color: #1a1a1a;
}

.more-dropdown {
    position: absolute;
    top: 100%;
    right: -30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 100;
    display: none;
    overflow: hidden;
    width: 217px;
}

.more-dropdown.show {
    display: block;
}

.more-dropdown-header {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-label);
}

.more-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #323B39;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0%;
}

.more-dropdown-item:hover {
    background: #f3f4f6;
}

.more-dropdown-item i {
    font-size: 16px;
    color: var(--text-gray);
}

/* Toast Notification for Requirements Review */
.toast-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #1f2937;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   ADD EXTRA FIELD BUTTON STYLES
   ========================================================================== */
.btn-add-extra-field {
    border: 1px solid var(--brand-primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    background: #fff;
    gap: 5px;
    width: fit-content;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-extra-field:hover {
    background: var(--brand-primary-bg);
}

.btn-add-extra-field svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   VIEW CERTIFICATES BUTTON STYLES
   ========================================================================== */
.btn-view-certificates {
    background-color: var(--brand-primary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.btn-view-certificates:hover {
    background-color: var(--brand-primary-hover);
}

/* Certificate preview link */
.certificate-preview-link {
    border: 1px solid var(--brand-primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    background: #fff;
    gap: 5px;
    text-decoration: none;
    margin-top: 8px;
    width: fit-content;
}

.certificate-preview-link:hover {
    background: var(--brand-primary-bg);
    text-decoration: none;
    color: var(--brand-primary);
}

/* ==========================================================================
   SERVICES LIST ACCORDION STYLES
   ========================================================================== */
.services-accordion-link {
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    padding: 16px 0px 16px 10px;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    display: block;
    background: transparent;
}

/* ==========================================================================
   SUCCESS PAYMENT MODAL STYLES  
   ========================================================================== */
.success-payment-modal-content {
    width: 496px;
    max-width: 496px;
    border-radius: 8px;
    background: #FFFFFF;
    padding: 40px;
    border: none;
}

.success-payment-modal-body {
    padding: 0;
}

.success-payment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.success-payment-title {
    font-family: var(--cabinet-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-dark);
    margin: 0;
}

.success-payment-message {
    font-family: var(--poppins-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-secondary);
    margin: 0;
}

.success-payment-btn {
    width: 416px;
    height: 48px;
    border-radius: 24px;
    padding: 12px 20px;
    background-color: var(--brand-primary-light);
    border: none;
    font-family: var(--poppins-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.2s;
}

.success-payment-btn:hover {
    background-color: var(--brand-primary-hover);
}

/* ==========================================================================
   LIVEWIRE REQUIREMENTS MODAL (Module) STYLES
   ========================================================================== */
.livewire-requirements-modal-dialog {
    max-width: 900px;
}

.livewire-requirements-modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--modal-shadow);
}

.livewire-requirements-modal-header {
    border-bottom: none;
    padding: 24px 32px 0 32px;
}

.livewire-requirements-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.livewire-requirements-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    opacity: 1;
    padding: 0;
    width: auto;
    height: auto;
    cursor: pointer;
}

.livewire-requirements-close-btn:hover {
    color: #1a1a1a;
}

.livewire-requirements-modal-body {
    padding: 24px 32px;
}

.livewire-requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.livewire-requirements-column-header {
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.livewire-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.livewire-requirements-subsection {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-label);
    margin-bottom: 8px;
    margin-top: 12px;
}

.livewire-requirements-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.livewire-requirements-bullet {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background-color: #059669;
    border-radius: 50%;
    margin-top: 6px;
}

.livewire-requirements-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
}

.livewire-requirements-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-gray);
}

.livewire-requirements-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.livewire-requirements-modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.btn-outline-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1.5px solid #059669;
    border-radius: 50px;
    background: transparent;
    color: #059669;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-copy:hover {
    background: #059669;
    color: white;
}

.btn-outline-copy i {
    font-size: 18px;
}

.btn-livewire-download-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background: #059669;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-livewire-download-pdf:hover {
    background: #047857;
}

.btn-livewire-download-pdf i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .livewire-requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .livewire-requirements-modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    .livewire-requirements-modal-footer {
        flex-direction: column;
    }
    
    .livewire-requirements-modal-footer button {
        width: 100%;
    }
}

/* Livewire Toast Styles */
.livewire-toast {
    background: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.livewire-toast.livewire-toast-error {
    background: #dc2626;
}

/* ==========================================================================
   SECTION HEADER WITH BUTTON STYLES
   ========================================================================== */
.section-header-with-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* ==========================================================================
   STEPS CONTAINER BUTTON STYLES
   ========================================================================== */
.steps-uploaded-files-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-view-uploaded-files {
    background-color: var(--brand-primary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.btn-view-uploaded-files:hover {
    background-color: var(--brand-primary-hover);
}

/* ==========================================================================
   REQUIREMENTS REVIEW PAGE
   ========================================================================== */
.requirements-review-page {
    background-color: var(--background-light);
    min-height: 100vh;
}

.requirements-review-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 20px;
}

.requirements-review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.requirements-review-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--brand-primary);
}

.back-link i {
    font-size: 16px;
}

.separator {
    color: var(--text-muted);
    font-weight: 300;
}

/* Requirements Review Grid Overrides */
.requirements-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .requirements-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .requirements-review-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================================================================
   SERVICES LIST ACCORDION
   ========================================================================== */
.accordion-link-styled {
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    padding: 16px 0px 16px 10px;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    display: block;
    background: transparent;
}

.accordion-link-styled:hover {
    color: var(--brand-primary);
}

/* ==========================================================================
   FIELD CHARGES PAYMENT
   ========================================================================== */
.copy-success-message {
    color: var(--success-color);
    font-size: 12px;
    display: none;
}

.payment-error-message {
    color: var(--error-color);
    display: none;
}

.btn-brand-primary {
    background: var(--brand-primary-light);
}

.btn-brand-primary:hover {
    background: var(--brand-primary-hover);
}

/* Success Payment Modal */
.success-payment-modal-content {
    width: 496px;
    max-width: 496px;
    border-radius: 8px;
    background: #FFFFFF;
    padding: 40px;
    border: none;
}

.success-payment-modal-body {
    padding: 0;
}

.success-payment-body-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.success-payment-title {
    font-family: var(--cabinet-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-dark);
    margin: 0;
}

.success-payment-subtitle {
    font-family: var(--poppins-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-secondary);
    margin: 0;
}

.success-payment-continue-btn {
    width: 416px;
    height: 48px;
    border-radius: 24px;
    padding: 12px 20px;
    background-color: var(--brand-primary-light);
    border: none;
    font-family: var(--poppins-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    cursor: pointer;
}

.success-payment-continue-btn:hover {
    background-color: var(--brand-primary-hover);
}

@media (max-width: 576px) {
    .success-payment-modal-content {
        width: 100%;
        max-width: 100%;
        padding: 24px;
    }
    
    .success-payment-continue-btn {
        width: 100%;
    }
}

/* ==========================================================================
   SET PRICING RULE PAGE
   ========================================================================== */

/* Pricing Rule Section Styles */
.pricing-rule-section {
    background: #F7F7F7;
    border-radius: 4px;
    margin-top: 20px;
    overflow: hidden;
}

.pricing-rule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    background: #F7F7F7;
}

.pricing-rule-toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-arrow {
    font-size: 20px;
    color: #596963;
    transition: transform 0.3s ease, color 0.3s ease;
}

.toggle-arrow.rotate {
    transform: rotate(90deg);
    color: var(--brand-primary-light);
}

.pricing-rule-title {
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Custom Toggle Switch */
.custom-toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.custom-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.toggle-slider-switch:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.custom-toggle-switch input:checked + .toggle-slider-switch {
    background-color: var(--brand-primary-light);
}

.custom-toggle-switch input:checked + .toggle-slider-switch:before {
    transform: translateX(20px);
}

/* Pricing Type Options */
.pricing-type-options {
    padding: 0 20px 16px 50px;
}

.pricing-type-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 30px;
}

.pricing-type-item i {
    color: #596963;
    font-size: 14px;
}

.pricing-type-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-type-label {
    display: flex;
    align-items: center;
    font-family: var(--poppins-font);
    font-size: 12px;
    font-weight: 500;
    color: #596963;
    cursor: pointer;
    margin: 0;
}

.pricing-type-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.pricing-type-item input[type="radio"]:checked {
    border-color: var(--brand-primary-light);
}

.pricing-type-item input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--brand-primary-light);
    border-radius: 50%;
}

/* Pricing Card Styles */
.pricing-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
}

.pricing-card-title {
    font-family: var(--poppins-font);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--brand-primary);
    margin-bottom: 8px;
}

.pricing-card-subtitle {
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: #596963;
    margin-bottom: 20px;
}

.pricing-card .form-label {
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pricing-card .form-control {
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--poppins-font);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-card .form-control::placeholder {
    color: var(--border-input);
}

.pricing-card .form-control:focus {
    border-color: var(--brand-primary-light);
    box-shadow: none;
    outline: none;
}

/* Save Button */
.save-pricing-btn {
    width: 306px;
    height: 48px;
    background-color: var(--brand-primary-light);
    color: white;
    border: none;
    padding: 12px 24px;
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 24px;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.save-pricing-btn:hover {
    background-color: #009963;
}

.save-pricing-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Response Modal Styles */
.response-modal-content {
    width: 352px;
    height: 308px;
    border-radius: 8px;
    border: none;
    padding: 40px;
    gap: 24px;
    margin: 0 auto;
}

.response-modal-content .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
}

.response-icon {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-checkmark {
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-circle {
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.response-title {
    font-family: 'Cabinet Grotesk', var(--poppins-font), sans-serif;
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-dark);
    margin: 0;
}

.response-message {
    font-family: var(--poppins-font);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-secondary);
    margin: 0;
}

.response-done-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 10px;
    width: 272px;
    height: 48px;
    background: var(--brand-primary-light);
    color: white;
    border: none;
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
    margin-top: 12px;
}

.response-done-btn:hover {
    background-color: #009963;
}

.response-done-btn.error-btn {
    background-color: #DC0A0A;
}

.response-done-btn.error-btn:hover {
    background-color: #b00808;
}

/* ==========================================================================
   ADDITIONAL REQUIREMENTS TABLE
   ========================================================================== */
.additional-requirements-section {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.additional-requirements-title {
    font-family: var(--poppins-font);
    font-size: 18px;
    font-weight: 500;
    color: #99A5A1;
    margin-bottom: 16px;
    line-height: 100%;
}

.additional-requirements-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.additional-requirements-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--poppins-font);
}

.additional-requirements-table thead th {
    background: #EEEEEE;
    padding: 12px 16px;
    text-align: left;
    font-size: 10px;
    font-weight: 500;
    color: #1E1E1E;
    line-height: 100%;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.additional-requirements-table tbody td {
    padding: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #292D32;
    line-height: 100%;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.additional-requirements-table tbody tr:last-child td {
    border-bottom: none;
}

.additional-requirements-table tbody tr:hover {
    background: #FAFAFA;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.status-paid {
    background: rgba(0, 190, 124, 0.1);
    color: var(--brand-primary);
}

.status-badge.status-not-paid {
    background: rgba(234, 108, 0, 0.1);
    color: rgba(234, 108, 0, 1);
}

.status-badge.status-no-charge {
    background: #F3F4F6;
    color: var(--text-muted);
}

/* Table Actions Dropdown */
.table-actions-dropdown {
    position: relative;
    display: inline-block;
}

.table-actions-btn {
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.table-actions-btn:hover {
    background: #F3F4F6;
    color: var(--text-secondary);
}

.table-actions-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 140px;
    z-index: 100;
    display: none;
    overflow: hidden;
}

.table-actions-menu.show {
    display: block;
}

.table-action-item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.table-action-item:hover {
    background: #F9FAFB;
}

.table-action-item.table-action-delete {
    color: #DC0A0A;
}

.table-action-item.table-action-delete:hover {
    background: rgba(220, 10, 10, 0.05);
}

@media (max-width: 768px) {
    .additional-requirements-table thead th,
    .additional-requirements-table tbody td {
        padding: 12px 10px;
        font-size: 12px;
    }
    
    .additional-requirements-title {
        font-size: 16px;
    }
}

/* Mobile card layout for Additional Requirements table */
@media (max-width: 576px) {
    .additional-requirements-section {
        margin-top: 24px;
        padding-top: 16px;
    }

    .additional-requirements-title {
        font-size: 14px;
    }

    .additional-requirements-table-wrapper {
        border: none;
        background: transparent;
    }

    .additional-requirements-table {
        display: block;
    }

    .additional-requirements-table thead {
        display: none;
    }

    .additional-requirements-table tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .additional-requirements-table tbody tr {
        display: flex;
        flex-direction: column;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 16px;
        gap: 12px;
    }

    .additional-requirements-table tbody tr:hover {
        background: #fff;
    }

    .additional-requirements-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        border-bottom: none;
        font-size: 14px;
    }

    .additional-requirements-table tbody td::before {
        content: attr(data-label);
        font-weight: 500;
        color: #99A5A1;
        font-size: 12px;
        flex-shrink: 0;
        margin-right: 12px;
    }

    .additional-requirements-table tbody td:last-child {
        justify-content: flex-end;
    }

    .additional-requirements-table tbody td:last-child::before {
        display: none;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-add-extra-field {
        width: 100%;
        justify-content: center;
    }
}



/* ==========================================================================
   SECTION HEADER ROW & ADD EXTRA FIELD BUTTON
   ========================================================================== */
.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.btn-add-extra-field {
    border: 1px solid var(--brand-primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    background: #fff;
    gap: 5px;
    width: fit-content;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-extra-field:hover {
    background: rgba(0, 122, 79, 0.05);
    border-color: var(--brand-primary-hover);
}

.btn-add-extra-field svg {
    flex-shrink: 0;
}

/* ==========================================================================
   TASK INFORMATION PAGE STYLES
   ========================================================================== */

/* Hide charge tooltips on admin task-information page only */
.admin-task-view .custom-charge-tooltip {
    display: none !important;
}

/* Success Modal Styles */
.success-modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.success-modal-content .modal-body {
    padding: 40px;
}

.success-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.success-icon-wrapper {
    margin-bottom: 8px;
}

.success-modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #010C22;
    margin: 0;
}

.success-modal-message {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1E1E1E;
    margin: 0;
}

.success-modal-btn {
    width: 100%;
    max-width: 280px;
    height: 48px;
    border-radius: 24px;
    border: none;
    background: #00BE7C;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.success-modal-btn:hover {
    background: #007A4F;
}

/* Delete Modal Styles */
.delete-modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
    max-width: 573px;
    margin: 0 auto;
}

.delete-modal-content .modal-body {
    padding: 32px;
}

.delete-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.delete-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid #DC0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.delete-modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #010C22;
    margin: 0;
}

.delete-modal-message {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1E1E1E;
    margin: 0;
}

.delete-modal-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 16px;
}

.delete-modal-cancel-btn {
    height: 44px;
    border-radius: 24px;
    border: 1px solid #99A5A1;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #596963;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 12px 20px;
}

.delete-modal-cancel-btn:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

.delete-modal-confirm-btn {
    height: 44px;
    border-radius: 24px;
    border: none;
    background: #DC0A0A;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 12px 20px;
}

.delete-modal-confirm-btn:hover {
    background: #B91C1C;
}

/* Notify Customer Modal Styles */
#confirmNotifyModal .modal-dialog {
    max-width: 760px;
    width: 760px;
}

.notify-modal-content {
    border-radius: 8px;
    border: none;
    overflow: hidden;
}

.notify-modal-content .modal-body {
    padding: 40px;
}

.notify-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.notify-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.notify-modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #010C22;
    margin: 0 0 8px 0;
    text-align: center;
}

.notify-modal-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1E1E1E;
    margin: 0 0 24px 0;
    text-align: center;
}

.notify-modal-sections {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notify-section {
    border-radius: 8px;
    padding: 16px;
    background: #fff;
}

.notify-section-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #99A5A1;
    margin: 0 0 8px 0;
}

.notify-section-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notify-field-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.notify-field-item-0 {
    display: flex;
    flex-direction: column;
    background: #FBFBFB;
    border-radius: 8px;
    padding: 24px;
    gap: 4px;
}

.notify-field-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1E1E1E;
    margin: 0;
}

.notify-field-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #007A4F;
    border-radius: 8px;
    padding: 4px 8px;
    background: #00BE7C1A;
}

.notify-field-reason {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #99A5A1;
    margin: 1px 0 4px 0;
}

.notify-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #007A4F;
    border-radius: 8px;
    padding: 16px 24px;
    background: #fff;
    margin-top: 8px;
}

.notify-total-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1E1E1E;
}

.notify-total-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #007A4F;
}

.notify-modal-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
}

.notify-cancel-btn {
    height: 48px;
    border-radius: 24px;
    border: 1px solid #007A4F;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #007A4F;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 12px 64px;
}

.notify-cancel-btn:hover {
    background: #F0FDF4;
}

.notify-confirm-btn {
    height: 48px;
    border-radius: 24px;
    border: none;
    background: #00BE7C;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    padding: 12px 64px;
}

.notify-confirm-btn:hover {
    background: #007A4F;
}

@media (max-width: 600px) {
    #confirmNotifyModal .modal-dialog {
        width: 95%;
        max-width: 95%;
    }

    .notify-modal-buttons {
        grid-template-columns: 1fr;
    }
}

/* Field Charges Modal Styles */
.field-charges-modal-dialog {
    max-width: 820px;
    width: 820px;
}

.field-charges-modal {
    border-radius: 8px;
    border: none;
    overflow: hidden;
}

.field-charges-modal .modal-body {
    padding: 0;
}

.field-charges-content {
    padding: 40px;
    font-family: 'Poppins', sans-serif;
}

.field-charges-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 8px;
}

.field-charges-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #010C22;
    margin: 0;
    text-align: center;
}

.field-charges-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6B7280;
    transition: color 0.2s ease;
}

.field-charges-close:hover {
    color: #1F2937;
}

.field-charges-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1E1E1E;
    text-align: center;
    margin: 0 0 24px 0;
}

.field-charges-section {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.field-charges-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #007A4F;
    margin: 0 0 16px 0;
}

.field-charges-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field-charge-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
}

.field-charge-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.field-charge-info {
    flex: 1;
}

.field-charge-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1E1E1E;
    margin: 0 0 4px 0;
}

.field-charge-reason {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #99A5A1;
    margin: 0 0 8px 0;
}

.field-charge-amount {
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-charge-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #1E1E1E;
}

.field-charge-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 10px;
}

.field-charge-badge.not-paid {
    background: #EA6C001A;
    color: #EA6C00;
}

.field-charge-badge.paid {
    background: #D1FAE5;
    color: #059669;
}

.field-charge-actions {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.field-charge-action-btn {
    width: 40px;
    height: 40px;
    border: 1.5px solid #DC0A0A;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #DC0A0A;
}

.field-charge-action-btn:hover {
    background: #FEF2F2;
}

.field-charge-action-btn.delete:hover {
    background: #FEF2F2;
}

.field-charges-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field-charges-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-charges-full-width {
    grid-column: 1 / -1;
}

.field-charges-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1F2937;
}

.field-charges-input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    padding: 0 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1F2937;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

.field-charges-input::placeholder {
    color: #9CA3AF;
}

.field-charges-input:focus {
    border-color: #007A4F;
}

.field-charges-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231F2937' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.field-charges-textarea {
    width: 100%;
    min-height: 80px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1F2937;
    background: #fff;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.field-charges-textarea::placeholder {
    color: #9CA3AF;
}

.field-charges-textarea:focus {
    border-color: #007A4F;
}

.field-charges-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #007A4F;
    border-radius: 8px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #007A4F;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 16px;
}

.field-charges-add-btn:hover {
    background: #f0fdf4;
}

.field-charges-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.field-charges-cancel-btn {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    border: 1px solid #007A4F;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #007A4F;
    cursor: pointer;
    transition: all 0.2s ease;
}

.field-charges-cancel-btn:hover {
    background: #f0fdf4;
}

.field-charges-notify-btn {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    border: none;
    background: #00BE7C;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    transition: all 0.2s ease;
}

.field-charges-notify-btn:hover {
    background: #007A4F;
}

/* Responsive for field charges modal */
@media (max-width: 860px) {
    .field-charges-modal-dialog {
        width: 95%;
        max-width: 95%;
    }

    .field-charges-content {
        padding: 24px;
    }

    .field-charges-form-grid {
        grid-template-columns: 1fr;
    }

    .field-charges-footer {
        flex-direction: column;
    }

    .field-charges-cancel-btn {
        flex: none;
        width: 100%;
    }
}

/* Extra Requirement Modal Styles */
#setUpRequirement .modal-dialog {
    max-width: 896px;
    width: 896px;
}

.extra-requirement-modal {
    width: 896px;
    max-width: 896px;
    border-radius: 8px;
    overflow: hidden;
}

.extra-requirement-modal .modal-body {
    padding: 0;
}

.extra-requirement-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.extra-requirement-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #010C22;
    text-align: center;
    margin: 0;
}

.extra-requirement-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #1E1E1E;
    margin: 0;
}

.extra-requirement-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 16px;
}

.extra-requirement-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.extra-requirement-options-field {
    grid-column: 1 / -1;
}

.extra-requirement-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #010C22;
}

.extra-requirement-input {
    width: 100%;
    height: 57px;
    border-radius: 8px;
    border: 1px solid #AEBBB6;
    padding: 0 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #010C22;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

.extra-requirement-input::placeholder {
    color: #9CA3AF;
}

.extra-requirement-input:focus {
    border-color: #007A4F;
}

.extra-requirement-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23010C22' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.extra-requirement-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.extra-requirement-cancel-btn {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    padding: 12px 20px;
    border: 1px solid #007A4F;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #007A4F;
    cursor: pointer;
    transition: all 0.2s ease;
}

.extra-requirement-cancel-btn:hover {
    background: #f0fdf4;
}

.extra-requirement-submit-btn {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    padding: 12px 20px;
    border: none;
    background: #00BE7C;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.extra-requirement-submit-btn:hover {
    background: #007A4F;
}

/* Responsive for extra requirement modal */
@media (max-width: 920px) {
    #setUpRequirement .modal-dialog {
        width: 95%;
        max-width: 95%;
    }

    .extra-requirement-modal {
        width: 100%;
        max-width: 100%;
    }

    .extra-requirement-content {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .extra-requirement-form-grid {
        grid-template-columns: 1fr;
    }

    .extra-requirement-buttons {
        grid-template-columns: 1fr;
    }

    .extra-requirement-title {
        font-size: 20px;
    }

    .extra-requirement-subtitle {
        font-size: 14px;
    }
}

/* File Preview Button Styles - matches input box size */
.file-preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #fff;
    color: #1F2937;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    margin-top: 8px;
    box-sizing: border-box;
}

.file-preview-btn:hover {
    border-color: #007A4F;
    color: #007A4F;
    background: #F9FAFB;
}

.file-preview-btn svg {
    flex-shrink: 0;
    color: #6B7280;
}

.file-preview-btn:hover svg {
    color: #007A4F;
}

/* Task Header Responsive Styles */
.task-header-responsive {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.task-header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-manage-charges {
    width: 235px;
    height: 48px;
    border-radius: 24px;
    padding: 12px 20px;
    border: 1px solid #007A4F;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #007A4F;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-bottom: 13px;
}

.btn-upload-cert {
    width: 187px;
    height: 48px;
    border-radius: 24px;
    padding: 12px 20px;
    border: none;
    background: #00BE7C;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-bottom: 13px;
}

.btn-upload-cert:hover {
    background: #007A4F;
}

/* Tablet breakpoint */
@media (max-width: 992px) {
    .task-header-responsive {
        flex-direction: column;
        align-items: flex-start;
    }

    .task-header-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-manage-charges,
    .btn-upload-cert {
        flex: 1;
        min-width: 160px;
        max-width: 220px;
    }
}

/* Mobile breakpoint */
@media (max-width: 576px) {
    .task-header-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-manage-charges,
    .btn-upload-cert {
        width: 100%;
        max-width: 100%;
        height: 44px;
        font-size: 14px;
        padding: 10px 16px;
    }
}

.withdraw-btn {
    width: 50%;
    background-color: #007A4F;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.withdraw-btn:hover {
    background-color: #00BE7C;
}

/* Custom Charge Tooltip Styles (for task information page) */
.form-group > label:first-child,
p.label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1E1E1E;
}

.custom-charge-tooltip .tooltip-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #007A4F;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--poppins-font);
    background: rgba(0, 190, 124, 0.1);
    min-width: 86px;
    height: 32px;
    border-radius: 8px;
    padding: 4px 8px;
    justify-content: center;
}

.custom-charge-tooltip .tooltip-trigger .info-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-charge-tooltip .tooltip-trigger .info-icon svg {
    width: 16px;
    height: 16px;
}

.custom-charge-tooltip .tooltip-content {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #181D27;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--poppins-font);
    line-height: 18px;
    letter-spacing: 0%;
    white-space: normal;
    width: max-content;
    max-width: 395px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-charge-tooltip .tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.custom-charge-tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

.custom-charge-tooltip.paid-charge .tooltip-trigger {
    color: #007A4F;
    background: rgba(40, 167, 69, 0.1);
}




