﻿.fb-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #fffdf9;
}

.fb-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.fb-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.fb-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
    display: block;
}

.fb-select {
    border-radius: 10px;
    border: 1.5px solid #e0ddd8;
    background: #ffffff;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    appearance: auto;
}

.fb-textarea {
    border-radius: 10px;
    border: 1.5px solid #e0ddd8;
    background: #ffffff;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    resize: none;
}

    .fb-select:focus,
    .fb-textarea:focus {
        border-color: #059669;
        box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
        outline: none;
    }

.fb-charcount {
    font-size: 0.78rem;
    color: #9ca3af;
    text-align: right;
    margin-top: 0.3rem;
}

.fb-error-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.fb-btn-cancel {
    flex: 1;
    background: transparent;
    border: 1.5px solid #e0ddd8;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .fb-btn-cancel:hover {
        background: #f3f4f6;
    }

.fb-btn-submit {
    flex: 2;
    background: #059669;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

    .fb-btn-submit:hover {
        background: #047857;
        transform: translateY(-1px);
    }

    .fb-btn-submit:active {
        transform: translateY(0);
    }

    .fb-btn-submit:disabled {
        background: #6ee7b7;
        transform: none;
        cursor: not-allowed;
    }

