:root {
    --primary: #2962FF;
    --primary-dark: #0D47A1;
    --secondary: #5C6BC0;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #F44336;
    --light: #F5F5F5;
    --dark: #263238;
    --gray: #9E9E9E;
    --gray-light: #E0E0E0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Login Page Styles */
.login-page {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.brand-logo {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-container {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-container img {
    max-height: 120px;
    width: auto;
}

.sidebar-logo {
    height: 50px;
    width: auto;
}

.mobile-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    padding: 3px;
    border: none;
    box-shadow: none;
    background-color: transparent;
}

.mobile-logo-placeholder {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 3px 8px;
    border: 2px dashed var(--primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 2rem 1rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: rgba(41, 98, 255, 0.9);
    border-color: var(--primary);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: rgba(92, 107, 192, 0.9);
    border-color: var(--secondary);
    color: white;
}

/* Dashboard Styles */
.sidebar {
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    height: 100vh;
    position: fixed;
    width: 250px;
    z-index: 1000;
    transition: var(--transition);
}

.sidebar-collapsed {
    width: 70px;
}

.sidebar-collapsed .brand-logo {
    display: none;
}

.sidebar-toggle {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1010;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.sidebar .nav-link {
    color: var(--dark);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.sidebar .nav-link:hover {
    background-color: var(--light);
    color: var(--primary);
}

.sidebar .nav-link.active {
    background-color: rgba(41, 98, 255, 0.07);
    color: rgba(41, 98, 255, 0.9);
    border-left: 3px solid var(--primary);
}

.sidebar .nav-link i {
    margin-right: 10px;
    font-size: 1.2rem;
    min-width: 1.5rem;
    text-align: center;
}

.main-content {
    margin-left: 250px;
    padding: 20px;
    transition: var(--transition);
}

.main-content-expanded {
    margin-left: 70px;
}

.dashboard-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.dashboard-card .card-body {
    padding: 1.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Charts */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

/* Mobile App Styles */
.mobile-app {
    max-width: 480px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.mobile-header {
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-header-alt {
    background-color: white;
    color: var(--primary);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--primary);
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(41, 98, 255, 0.15);
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    z-index: 1000;
}

.mobile-nav-item {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0;
    color: var(--gray);
    transition: var(--transition);
}

.mobile-nav-item.active {
    color: var(--primary);
}

.mobile-nav-item i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.mobile-content {
    padding: 1rem;
    padding-bottom: 130px;
}

/* Chat Bot */
.chat-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 260px);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
}

.message-user {
    background-color: var(--primary);
    color: white;
    border-radius: 1rem 1rem 0 1rem;
    align-self: flex-end;
    margin-left: auto;
}

.message-bot {
    background-color: var(--gray-light);
    border-radius: 1rem 1rem 1rem 0;
}

.chat-input {
    display: flex;
    padding: 1rem;
    background-color: white;
    border-top: 1px solid var(--gray-light);
}

.chat-input input {
    flex: 1;
    border: none;
    background-color: var(--light);
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    margin-right: 0.5rem;
}

.chat-input button {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .sidebar {
        width: 70px;
    }
    
    .sidebar .nav-link span {
        display: none;
    }
    
    .main-content {
        margin-left: 70px;
    }

    .brand-logo {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 0;
        transform: translateX(-70px);
    }
    
    .sidebar.show {
        width: 70px;
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.4rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Utility Classes */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cursor-pointer {
    cursor: pointer;
}

.price-change-up {
    color: var(--success);
}

.price-change-down {
    color: var(--danger);
}

/* Sustainability Styles */
.eco-badge {
    background-color: #E8F5E9;
    color: var(--success);
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.carbon-meter {
    height: 10px;
    border-radius: 5px;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.carbon-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success), #8BC34A);
    transition: width 1s ease;
}

/* Custom Scrollbar - Removed to use default browser scrollbar */

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-secondary {
    border-color: var(--secondary) !important;
}

/* Room Availability Calendar Styles */
.room-calendar-container {
    overflow-x: auto;
}

.room-calendar {
    display: flex;
    flex-direction: column;
    min-width: 800px;
}

.calendar-header-row, .calendar-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.calendar-header-cell, .calendar-cell {
    flex: 1;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    font-size: 0.85rem;
    border-right: 1px solid #f0f0f0;
}

.calendar-header-cell {
    font-weight: 600;
    background-color: #f8f9fa;
}

.room-header {
    min-width: 60px;
    flex: 0 0 60px;
}

.room-number-cell {
    min-width: 60px;
    flex: 0 0 60px;
    font-weight: 500;
    background-color: #f8f9fa;
}

.room-type-header {
    background-color: #e9ecef;
}

.room-type-header-cell {
    justify-content: flex-start;
    padding-left: 1rem;
    font-weight: 600;
}

.calendar-cell.available {
    background-color: #e8f5e9;
    cursor: pointer;
}

.calendar-cell.booked {
    background-color: #ffebee;
    cursor: pointer;
}

.calendar-cell.maintenance {
    background-color: #fff8e1;
    position: relative;
}

.calendar-cell.maintenance::before {
    content: "\F64A";
    font-family: "bootstrap-icons";
    font-size: 12px;
    color: #e65100;
}

.calendar-cell.check-in {
    position: relative;
}

.calendar-cell.check-in::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #4caf50 transparent transparent transparent;
}

.calendar-cell.check-out {
    position: relative;
}

.calendar-cell.check-out::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent #f44336 transparent;
}

.calendar-cell.weekend {
    background-color: rgba(0,0,0,0.03);
}

.calendar-header-cell.weekend {
    color: #dc3545;
}

.color-box {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.color-box.available {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
}

.color-box.booked {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
}

.color-box.maintenance {
    background-color: #fff8e1;
    border: 1px solid #ffecb3;
}

.color-box.check-in {
    background-color: white;
    border: 1px solid #ccc;
    position: relative;
}

.color-box.check-in::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 0;
    border-color: #4caf50 transparent transparent transparent;
}

.color-box.check-out {
    background-color: white;
    border: 1px solid #ccc;
    position: relative;
}

.color-box.check-out::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 7px 7px;
    border-color: transparent transparent #f44336 transparent;
}

/* Guest Feedback Dashboard Styles */
.feedback-container {
    display: flex;
    flex-direction: column;
}

.feedback-item {
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.feedback-item:last-child {
    border-bottom: none;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.feedback-avatar {
    font-size: 1.5rem;
    color: #6c757d;
}

.feedback-name {
    font-weight: 600;
    font-size: 1rem;
}

.feedback-meta {
    font-size: 0.8rem;
    color: #6c757d;
}

.feedback-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rating-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.feedback-content {
    margin-bottom: 0.75rem;
}

.feedback-content p {
    margin-bottom: 0;
}

.feedback-sentiment {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sentiment-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

.sentiment-tag.positive {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.sentiment-tag.negative {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.sentiment-tag i {
    margin-right: 0.25rem;
}

.feedback-flag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.feedback-actions {
    display: flex;
    gap: 0.5rem;
}

.feedback-reply-form {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

.feedback-response {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    border-left: 3px solid #0d6efd;
}

.response-header {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.response-icon {
    color: #0d6efd;
    margin-right: 0.25rem;
}

.response-name {
    font-weight: 600;
    margin-right: 0.5rem;
}

.response-time {
    color: #6c757d;
}

.response-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.feedback-resolved {
    background-color: rgba(248, 249, 250, 0.5);
}

/* Weather Forecast Styles */
.weather-forecast {
    font-size: 0.9rem;
}

.weather-day {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.75rem;
    min-width: 120px;
    text-align: center;
    background-color: #f8f9fa;
}

.weather-day-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.weather-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.weather-condition {
    margin-bottom: 0.5rem;
}

.weather-temp {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.weather-detail {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

/* Voice Input Button Styles */
#voice-input-btn {
    transition: all 0.2s ease;
}

#voice-input-btn.listening {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    animation: pulse 1.5s infinite;
}

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

.suggestion-chips {
    overflow-x: auto;
    padding-bottom: 3px;
    padding-top: 3px;
}

.suggestion-chips .suggestion-btn {
    margin-right: 8px;
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
}

/* Global Chat Bar */
.global-chat-bar {
    position: fixed;
    bottom: 85px;
    left: 0;
    right: 0;
    padding: 8px 15px 5px;
    background-color: white;
    box-shadow: 0 -1px 10px rgba(0,0,0,0.1);
    z-index: 990;
    margin: 0 auto;
    max-width: 480px;
}

.suggestion-chips-container {
    position: relative;
    overflow: hidden;
}

.suggestion-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
    z-index: 2;
}

.global-chat-bar .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

#global-voice-input-btn {
    transition: all 0.2s ease;
}

#global-voice-input-btn.listening {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    animation: pulse 1.5s infinite;
}

/* This ensures the chat interface is properly positioned with the global bar */
.concierge-content {
    padding-bottom: 0;
}

/* Welcome Card Improvements */
.welcome-card {
    border: none;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.room-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.room-badge span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    line-height: 1;
}

.room-badge h3 {
    color: white;
    margin: 0;
    line-height: 1;
    font-weight: 600;
}

.welcome-decoration {
    font-size: 8rem;
    opacity: 0.1;
    top: -15px;
    right: -15px;
    transform: rotate(15deg);
    pointer-events: none;
}

.quick-actions {
    margin-top: 0.5rem;
}

.quick-action-btn {
    text-align: center;
    padding: 0.5rem 0.25rem;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.quick-action-btn:hover {
    background-color: rgba(0, 0, 0, 0.02);
    transform: translateY(-2px);
}

.quick-action-btn:active {
    transform: translateY(0);
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.02);
}

.quick-action-btn:active .icon-bg.bg-primary-light {
    background-color: rgba(41, 98, 255, 0.3);
}

.quick-action-btn .icon-bg {
    transition: transform 0.3s ease;
}

.quick-action-btn:hover .icon-bg {
    transform: scale(1.1);
}

.quick-action-btn .small {
    font-weight: 500;
    font-size: 0.85rem;
}

.icon-bg {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-bg i {
    font-size: 1.2rem;
}

.bg-primary-light {
    background-color: rgba(41, 98, 255, 0.1);
    color: var(--primary);
}

/* Make modal backdrops more transparent when buttons are clicked */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Add a lighter background to modals triggered from quick-action buttons */
.modal-content {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Room Controls Enhancements */
.room-scene-btn {
    transition: all 0.25s ease;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.room-scene-btn:hover:not(.active) {
    background-color: rgba(13, 110, 253, 0.03);
}

.room-scene-btn:active:not(.active) {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.room-scene-btn.active {
    background-color: rgba(13, 110, 253, 0.85);
    color: white;
    box-shadow: 0 2px 5px rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}

.preset-btn {
    border-radius: 10px;
    transition: all 0.25s ease;
    border-width: 1px;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    text-align: left;
}

.preset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.preset-btn:active {
    transform: translateY(0);
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.preset-btn i {
    color: var(--primary);
}

/* New Dashboard Components Styling */

/* Room Status Overview */
.room-status-grid {
    min-height: 250px;
}

.status-summary .status-item {
    padding: 10px 15px;
    border-radius: 6px;
    background-color: rgba(0,0,0,0.02);
    margin-bottom: 10px;
}

.status-summary .status-item:hover {
    background-color: rgba(0,0,0,0.04);
}

.status-summary .bi-circle-fill {
    font-size: 10px;
}

/* Task Management */
.task-list {
    margin-bottom: 0;
}

.task-list .list-group-item {
    padding: 12px 15px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.task-list .list-group-item:hover {
    background-color: rgba(0,0,0,0.02);
}

.task-list .badge {
    font-size: 0.7rem;
    font-weight: 500;
    min-width: 70px;
    text-align: center;
}

.form-check-input:checked + .form-check-label {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Arrivals & Departures */
.arrivals-departures h6 {
    margin-bottom: 10px;
    font-weight: 600;
}

.arrivals-departures .table {
    margin-bottom: 0;
}

.arrivals-departures .badge {
    font-weight: 500;
}

/* Weather Forecast */
.weather-section {
    padding: 5px;
}

.weather-icon i {
    font-size: 2.5rem;
}

.weather-info h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

.forecast-days {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.forecast-day {
    padding: 8px 5px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.forecast-day:hover {
    background-color: rgba(0,0,0,0.03);
    transform: translateY(-2px);
}

.forecast-day .day {
    font-weight: 600;
    margin-bottom: 5px;
}

.forecast-day .temp {
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Staff Schedule */
.staff-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.staff-name {
    font-weight: 500;
    line-height: 1.2;
}

.staff-item {
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.staff-item:hover {
    background-color: rgba(0,0,0,0.02);
}

.schedule-section h6 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Add Task Modal */
#addTaskModal .modal-content {
    border-radius: 10px;
    border: none;
}

#addTaskModal .modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

#addTaskModal .modal-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .weather-info h2 {
        font-size: 1.8rem;
    }
    
    .weather-icon i {
        font-size: 2rem;
    }
    
    .weather-details {
        font-size: 0.8rem;
    }
    
    .forecast-day {
        padding: 6px 2px;
    }
    
    .forecast-day .temp {
        font-size: 0.8rem;
    }
}

/* Fix for strikethrough on disabled preferences */
.form-check-label {
    text-decoration: none !important;
}

/* Override any strikethrough styles that might be applied by JavaScript */
.form-check-input:checked + .form-check-label {
    text-decoration: none !important;
}

/* Section Navigation Styles */
.section-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: sticky;
    top: 1rem;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-nav .btn {
    margin: 0.25rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.section-nav .btn:hover {
    background-color: var(--primary) !important;
    color: white !important;
    transform: none !important;
    border-color: var(--primary) !important;
}

.section-nav .btn.active {
    background-color: var(--primary);
    color: white;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #a0d8ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
} 