/* Sidebar Container */
.sidebar {
    width: 250px; /* Set width of the sidebar */
    background-color: #0073e6; /* Blue background color */
    color: #fff; /* Text color */
    padding: 15px;
    position: fixed; /* Fixes the sidebar to the left */
    top: 0;
    left: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    z-index: 100;
}

/* User Login Block */
.sidebar .pengguna {
    font-weight: bold;
    margin-bottom: 20px;
}

/* Sidebar Links */
.sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Hover effect for links */
.sidebar a:hover {
    background-color: #005bb5;
}

/* Font Size Controls */
.sidebar .ukuran-huruf {
    margin-top: 20px;
    font-size: 14px;
}

/* Language Dropdown */
.sidebar .bahasa select {
    width: 100%;
    padding: 5px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

/* Button for language selection */
.sidebar .serahkan {
    width: 100%;
    background-color: #ff9800;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
}

.sidebar .serahkan:hover {
    background-color: #e68900;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
}
