body {
    font-family: 'Roboto';
    font-size: 11px;
}

.sidebar {
    height: 100vh;
    background-color: #343a40;
    color: white;
    position: fixed;
    width: 250px;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.sidebar.show {
    transform: translateX(0);
}

.sidebar a {
    color: white;
    text-decoration: none;
}

.sidebar a:hover {
    background-color: #495057;
    color: white;
}

.content {
    padding: 20px;
    margin-left: 250px;
}

.header {
    background-color: #f8f9fa;
    padding: 10px;
    border-bottom: 1px solid #e3e6f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-btn {
    background: none;
    border: none;
    color: #343a40;
    font-size: 24px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
}

.overlay.show {
    display: block;
}

@media (max-width: 768px) {
    .content {
        margin-left: 0;
    }
}

#tempat-pesan {
    font-size: 15px;
    color: blue;
}
#kata-kata {
    font-weight: bold;
    font-size: 15px;
    color: blue;
}
.hidden {
    display: none;
}


.login-form {
    width: 340px;
    margin: 50px auto;
}

.login-form form {
    margin-bottom: 15px;
    background: #f7f7f7;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

.login-form h2 {
    margin: 0 0 15px;
}

.form-control,
.btn {
    min-height: 38px;
    border-radius: 2px;
}

.btn {
    font-size: 15px;
    font-weight: bold;
}