.custom-table-header {
    background-color: #243875;
    color: white;
}
.glow-yellow-btn {
    background-color: #ffc107;   /* Bootstrap warning yellow */
    color: #000;
    border: none;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 18px rgba(255, 193, 7, 0.9),
                0 0 10px rgba(255, 193, 7, 0.6);
}

.glow-yellow-btn:hover {
    background-color: #ffca2c;
    color: #000;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
    transform: translateY(-2px);
}

.apply-section {
    background: linear-gradient(135deg, #f8f9fa, #eef2ff);
    border-radius: 10px;
    border: 1px solid #e0e6ff;
}

.apply-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.apply-email {
    font-size: 17px;
    font-weight: 700;
    color: #2d4aa3;
    text-decoration: none;
    padding: 4px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.apply-email:hover {
    background-color: #2d4aa3;
    color: #fff;
    box-shadow: 0 0 10px rgba(45, 74, 163, 0.6);
}
