/* Sidebar Styles */
.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    background-color:cornflowerblue;
    padding-top: 20px;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 1000;
}

    .sidebar a {
        padding: 10px 20px;
        text-decoration: none;
        font-size: 18px;
        color: white;
        display: block;
        transition: 0.3s;
    }

        .sidebar a:hover {
            background-color:darkblue;
            color: white;
        }

    .sidebar .closebtn {
        position: absolute;
        top: 0;
        right: 20px;
        font-size: 36px;
        margin-left: 50px;
        color: white;
    }

.main-content {
    margin-left: 250px; /* Same as the width of the sidebar */
    padding: 20px;
    transition: margin-left 0.5s;
}

.lang-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
}
