/* Desktop CSS - Styles for screens 992px and wider */
/* This preserves the current desktop layout and experience */

/* Desktop header container - prevent left/right cutoff */
.container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    overflow-x: hidden;
}

/* Fix negative margins that cause cutoff on desktop */
.row.py-2.border-bottom .col-12 .d-flex {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Custom outline info button style for desktop */
.btn-outline-info {
    color: #0369a1 !important; /* darker blue text */
    border-color: #0369a1 !important; /* darker blue border */
}

.btn-outline-info:hover, .btn-outline-info:focus {
    background-color: #0369a1 !important; /* darker blue background on hover */
    border-color: #0369a1 !important;
    color: #fff !important;
}

/* Logo styles are now in base.css - desktop only adds hover effect */

/* Glimmer effect on logo hover for desktop */
.logo-text {
    position: relative;
    overflow: hidden;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: left 0.6s ease-in-out;
}

.logo-container:hover .logo-text::before {
    left: 100%;
}

/* Desktop layout container */
.desktop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 0rem;
    padding-right: 0rem;
}

/* Desktop header layout */
.desktop-header {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

/* Desktop home sidebar */
.home-sidebar {
    height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Desktop curriculum sections */
.recent-visits-container {
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

/* Desktop message positioning */
#message-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1060;
    pointer-events: none;
}

.toast-message {
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
}

/* Desktop no-bullets list */
ul.no-bullets {
    list-style-type: none;
    padding-left: 0;
}

/* Desktop curriculum cards - fixed width to prevent stretching */
.curriculum-card {
    max-width: 400px !important;
}

.curriculum-card .card {
    max-width: 100%;
}