.sidebar button {
    background-color: rgba(44, 119, 211, 1);
    color: white;
    border: none;
    padding: 13px;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-left: 24px;
    width: 160px
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 0px; /* Important: default hidden */
    background-color: white;
    overflow-x: hidden;
    transition: width 0.3s ease;
    z-index: 1000;
}

/* Full width only when opened on mobile */
@media (max-width: 430px) {
    .sidebar.open {
        width: 100vw !important;
    }
}




.sidebar a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1.2rem;
    color: #BE0B32;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a73e8;
}




@media screen and (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}



@media screen and (max-width:1153px) {
    .nav-links a {
        font-size: 17px;
    }
}


@media screen and (max-width:1124px) {
    .nav-links a {
        padding: 0;
    }
}