/* form.css */

.custom-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.custom-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="file"],
.custom-form textarea,
.custom-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.custom-form input[type="submit"],
.custom-form button {
    background-color: #3a5b99;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.custom-form input[type="submit"]:hover,
.custom-form button:hover {
    background-color: #2f4879;
}


small {
    font-size: small !important;
}
select option[disabled] {
    color: #888;
}



 .form-success, .form-error {
            padding: 12px 16px;
            margin: 20px 0;
            border-radius: 6px;
            font-weight: 500;
            font-size: 16px;
            max-width: 600px;
        }

        .form-success {
            background-color: #e6f6e9;
            color: #2e7d32;
            border: 1px solid #a5d6a7;
        }

        .form-error {
            background-color: #fcebea;
            color: #c62828;
            border: 1px solid #f5c6cb;
        }


span.mandate {
    color: #ff0000;
}






/* ADMIN DASHBOARD TABLE CSS ************************************************/

.info-icon {
    cursor: pointer;
    color: #0073aa; /* or any color */
}









/* ADMIN FORM CSS  ************************************************/

.admin-form-sub-dates {
    margin-bottom: 15px; padding: 10px; background: #e5f7ea; border: 1px solid #27ae60;
}