.nav.nav-pills .nav-item .nav-link.active {
    background-color: #DCDCDC;
    color: black;
}

.nav.nav-pills .nav-item .nav-link:hover {
    background-color: #DCDCDC;
}

#navigation_buttons {
    margin-left: 17%;
}

#navigation_logo {
    padding-left: 5%;
}

.floating-container {
    position: fixed;
    bottom: 30px;
    z-index: 1000;
}

.floating-contact {
    right: 50px;
}

.floating-schedule {
    right: 125px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: relative;
    z-index: 1001;
}

.contact-btn {
    background: #2ecc71;
    color: white;
}

.schedule-btn {
    background: #3498db;
    color: white;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-window {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: none;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

.contact-window {
    z-index: 1002;
}

.schedule-window {
    font-size: 12px;
    line-height: 1.4;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1001;
}

.floating-window h3 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    padding-right: 20px;
}

.schedule-window h3 {
    font-size: 14px;
}

.contact-info p,
.schedule-info p {
    margin: 5px 0;
}

.schedule-window strong {
    font-size: 12px;
    display: block;
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #777;
    background: none;
    border: none;
    padding: 0;
}

.close-btn:hover {
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-window[style*="display: block"] {
    animation: fadeIn 0.3s ease-out;
}

@media (max-width: 480px) {
    .floating-container {
        right: 15px;
    }

    .floating-contact {
        bottom: 20px;
    }

    .floating-schedule {
        bottom: 80px;
    }

    .floating-window {
        width: 260px;
        max-width: calc(100vw - 30px);
    }
}