/* Custom styles for the alert subscription modal */
#alertSubscriptionModal .modal-content {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


#alertSubscriptionModal .modal-body {
    padding: 1.5rem;
}

#alertSubscriptionModal .subscription-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background-color: rgba(40, 167, 69, 0.1);
    margin-bottom: 1rem;
}

#alertSubscriptionModal .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

#alertSubscriptionModal .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

#alertSubscriptionModal .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

#alertSubscriptionModal .btn-close-white:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/* Job alert container styles in hero section */
.job-alert-container {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    backdrop-filter: blur(3px);
    max-width: 500px;
    margin: 0 auto;
}

/* Animation for modal entrance */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

@media (max-width: 575.98px) {
    .fixed-bottom-sm {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1030;
    }
}