.course-info-card {
position: sticky;
top: 70px;
}
.course-details-tabs .container.my-5 {
margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
.application-details {
    margin: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}
.agent-dashboard .card {
    transition: all 0.3s ease;
}

.agent-dashboard .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.application-row.table-active {
    background-color: #f8f9fa;
    font-weight: 500;
}
.alert.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}
.badge {
    font-size: 0.75em;
}

.btn-group .btn {
    margin-right: 2px;
}

.sticky-top {
    z-index: 1020;
}

@media print {
    .btn, .card-header, .alert { display: none !important; }
    .table { font-size: 11px; }
    .application-details-row { display: table-row !important; }
}

/* Slider/Banner Styles */
.slider-area {
    position: relative;
    min-height: 300px;
}

.slider-height-breadcrumb {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

.slider-content-breadcrumb {
    padding: 20px;
}

.white-color {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.f-700 {
    font-weight: 700;
}

.slider-content-breadcrumb h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.slider-content-breadcrumb p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Login Area Styles */
.login-area {
    background: #f8f9fa;
    padding: 60px 0;
}

.card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-body {
    padding: 2rem !important;
}

.card-body h4 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

.card-body p {
    font-size: 1rem;
    color: #555;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 8px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
.login-area a.btn.btn-primary.btn-sm {
    background: transparent;
    padding: 0;
    color: #fdc800;
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
    margin-top: 15em !important;
}


/*Loader css for self applications*/

.loading-spinner {
    color: #007bff;
    font-size: 16px;
    font-weight: 500;
}
.loading-spinner i {
    margin-right: 10px;
}

.drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.drop-area.drag-over {
    border-color: #007bff;
    background-color: #e9ecef;
}

#file-list {
    margin-top: 10px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 5px;
}

.file-item .remove-file {
    color: #dc3545;
    cursor: pointer;
    font-size: 14px;
}

.file-item .remove-file:hover {
    text-decoration: underline;
}

.remove-file {
    color: red;
    margin-left: 10px;
}
td.availble-course-apply a {
    width: 48%;
    text-align: center;
    font-size: 14px;
    padding: 10px 17px 10px 10px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .slider-content-breadcrumb h1 {
        font-size: 1.8rem;
    }

    .slider-content-breadcrumb p {
        font-size: 1rem;
    }

    .login-area {
        padding: 40px 0;
    }

    .card-body {
        padding: 1.5rem !important;
    }
}
#submitPayment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
#submitPayment.loading::after {
    content: '\f110'; /* FontAwesome spinner icon */
    font-family: 'FontAwesome';
    margin-left: 10px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}