html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Custom Styles for the Landing Page */
.hero-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: .75rem;
    flex-shrink: 0;
}


.feature-icon i {
    font-size: 2rem;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #6c757d; /* Bootstrap secondary color */
    color: #fff;
}

/* SignalR Toast Notifications */
.toast-container {
    z-index: 9999 !important;
}

.toast {
    min-width: 300px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.toast-body {
    padding: 0.75rem;
}

/* Dashboard Card Animations */
.request-card {
    transition: all 0.3s ease;
}

.request-card.border-primary {
    border-width: 2px !important;
    animation: pulse-border 1s ease-in-out;
}

.request-card.border-success {
    border-width: 2px !important;
    animation: pulse-border 1s ease-in-out;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
}

/* Toast notification close button styling */
.toast .btn-close {
    background-color: transparent;
    opacity: 0.8;
}

.toast .btn-close:hover {
    opacity: 1;
}
/* Video Conference Banner */
#videoConferenceBanner {
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-bottom: 3px solid #1e7e34 !important;
}

#videoConferenceBanner .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#videoConferenceBanner .btn-close:hover {
    opacity: 1;
}

#videoConferenceBanner .btn-light {
    background-color: white;
    color: #28a745;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s ease;
}

#videoConferenceBanner .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#videoConferenceBanner i.bi-camera-video-fill {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
