
/*     Download PDF      */ 

 .modal-overlay {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 99998;
            justify-content: center;
            align-items: center;
        }

        .form-container {
            background: #2a2d32;
            padding: 30px;
            /* border-radius: 8px; */
            /* border: 1px solid greenyellow; */
            box-shadow: 0 0px 70px greenyellow;
            width: 90%;
            max-width: 400px;
            position: relative;
            box-sizing: border-box;
            animation: fadeIn 0.3s ease;
            opacity: 0.9;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        .form-container .download-btn{
            background-color: yellowgreen;
            color:black;
            padding: 10px 20px;
            font-size: 11px;
            border: 1px solid yellowgreen;
            width: 100%;
            margin-top: 10px;
            border-radius: 0;
        }

        .form-container .download-btn:hover{
            background-color: greenyellow;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            color: greenyellow;
            cursor: pointer;
            border: none;
            background: none;
        }

        .close-btn:hover {
            color: white;
        }

        .form-container h2 {
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 22px;
            text-align: center;
            color: white;
        }

        .form-group {
            margin-bottom: 15px;
            text-align: left;
        }

        label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            color: white;
        }

        input, select {
            width: 100%;
            padding: 10px;
            border: 1px solid greenyellow;
            background-color: #2a2d32;
            /* border-radius: 4px; */
            box-sizing: border-box;
            font-size: 14px;
            color: white;
        }

        input:focus, select:focus {
            border-color: greenyellow;
            outline: none;
        }

        
    /* THIS WILL WORK PERFECTLY */
    .option-item:hover {
        background-color: yellowgreen !important;
        color: white;
    }


    .error-msg {
    color: #ff4d4d; /* High visibility matching warning states */
    font-size: 11px;
    margin-top: 4px;
    letter-spacing: 0.5px;
    font-weight: 500;
    animation: slideInError 0.2s ease;
}

@keyframes slideInError {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Red indicator focus fix override */
input:focus-visible, select:focus-visible {
    outline: none;
}