body {
    font-size: 0.9rem;
    background-color: #f5f5f5;
}

.form-control,
.selectize-input,
.card,
.card-header,
.list-group,
.btn, .form-select {
    border-radius: 0 !important;
}

.hospital-card {
    transition: all 0.3s ease;
}

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


/* Institution show page link to institution vacancy */
.vacancy-btn {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.vacancy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.6);
    color: #fff;
}

.vacancy-btn i {
    transition: transform 0.3s ease;
}

.vacancy-btn:hover i {
    transform: translateX(4px);
}

.vacancy-btn span {
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease, height 0.4s ease;
}

.vacancy-btn:hover span {
    width: 200px;
    height: 200px;
}



/* Institution Sidebar */
.sidebar-link {
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.sidebar-link:hover {
    background-color: #f1f5ff;
    color: #0d6efd !important;
    padding-left: 12px;
}

.sidebar-link:hover i {
    color: #0d6efd !important;
}

.gradient-text {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Selectize */
/* Match Bootstrap button height */
.selectize-control.single .selectize-input {
    height: 37px !important;
    display: flex;
    align-items: center;
    padding: 0 12px !important;
    border-radius: 6px;
}

/* Remove inner spacing issue */
.selectize-input>input {
    margin: 0 !important;
}

/* Match arrow alignment */
.selectize-control.single .selectize-input:after {
    right: 12px;
    margin-top: -3px;
}



/* Search Button */
.btn-premium-search {
    background: linear-gradient(135deg, #0d6efd, #20c997);
    border: none;
    color: #fff;
    border-radius: 40px;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 5px 14px rgba(13, 110, 253, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-premium-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
    color: #fff;
}

.emergency-bar {
    background: repeating-linear-gradient(-45deg,
            #c82333,
            #c82333 10px,
            #dc3545 10px,
            #dc3545 20px);
    overflow-x: auto;
    white-space: nowrap;
}
/* Hide scrollbar (optional but clean) */
.emergency-bar::-webkit-scrollbar {
    height: 0px;
}

.emergency-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;        /* Vertical center */
    justify-content: center;    /* Horizontal center */
    min-width: max-content;     /* Important for scroll */
}

.share-buttons a {
    display: inline-block;
    padding: 6px 12px;
    background-color: #0056b3;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.share-buttons a:hover {
    background-color: #0056b3;
}

.course-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

