.schedule-appointment-container {
    position: fixed;
    top:25px;
    z-index:99999;
    left: 50%;
    transform: translate(-50%, -50%);
}
.schedule-appointment-btn {
    background-color: #2d3663;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
a.schedule-appointment-btn:hover {
    background-color: #006fd1;
    color:#fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
   .navbar {
        flex-wrap: wrap;
    }
}