* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: Helvetica;
    font-size: 14px;
}

br.floating {
    clear: both;
    height: 0px;
    line-height: 0px;
}

#site-container {
    width: 100%;
    height: auto;
    /* margin: 5px auto; */
    padding-top: 0px;
    border: 1px solid #fff;
}

#header {
    font-size: 30px;
    text-align: center;
    color: #000;
    border: 1px solid #fff;
    border-radius: 5px;
    background: url();
    background-color: #fff;
    background-size: cover;
    padding: 20px;
    height: 70px;
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
}

.img-header {
    position: absolute;
    left: 0;
    top: 0;
}

a:link {
    color: #333;
}

a:active {
    color: #0c7d85;
}

a:hover {
    color: #0c7d85;
}

a:visited {
    color: #333;
}

#menu {
    margin-top: -32px;
    background-color: #2f375b;
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu ul li.utama {
    display: inline-table;
}

#menu ul li :hover {
    background-color: #10162e;
}

#menu ul li a {
    display: block;
    text-decoration: none;
    line-height: 40px;
    padding: 0 10px;
    color: #fff;
}

.utama ul {
    display: none;
    position: absolute;
    z-index: 2;
}

.utama:hover ul {
    display: block;
}

.utama ul li {
    display: block;
    background-color: #455083;
    width: 140px;
}

#content-wrapper {
    width: 100%;
    height: auto;
    margin: 0px !important;
    padding-top: 10px;
    padding-left: 140px;
    border-radius: 5px;
    &.min {
            padding: 10px;
        }
}

#content {
    width: 100%;
    height: auto;
    float: left;
    min-height: 275px;
    border-radius: 5px;
}

.content {
    width: 100%;
    height: auto;
    background: lightgrey;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
}

.form-control {
    margin-bottom: 10px !important;
}

.dataTables_scrollHead {
    height: 70px;
}

.dataTables_filter,
.dataTables_paginate {
    float: right;
}

.dataTables_filter {
    width: 200px;
}

.dataTables_filter input {
    width: 200px;
}

#isi {
    padding: 20px;
    font-size: 50px;
}

#sidebar {
    width: 280px;
    border-radius: 5px;
    height: auto;
    padding-left: 20px;
    float: right;

}

.sidebar-content {
    width: 210px;
    height: auto;
    padding: 10px;
    background: lightgrey;
    margin-bottom: 20px;
    border-radius: 5px;
}

.tittlesidebar {
    display: block;
    padding-bottom: 4px;
    font: 16pt Helvetica;
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

#footer {
    text-align: center;
    padding: 10px;
    background-color: #ccc;
    text-align: center;

}

button.toggle {
    z-index: 10;
    position: fixed;
    left: 12px;
    top: 10px;
    background-color: #575757;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

nav {
    width: 200px;
    height: 100vh;
    background-color: #2f375b;
    transition: all 0.3s;
    padding-top: 60px;
    overflow-y: auto;

    &.min {
        width: 60px;

        span {
            opacity: 0;
        }
        .hidemenu{
            display: none;
        }
    }

    ul {
        color: white;

        a {
            display: flex;
            gap: 10px;
            padding: 10px 20px;
            color: white;
            text-decoration: none;

            &:hover {
                background-color: gray;
            }

            span {
                transition: opacity 0.3s ease-in-out;
            }

        }
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        left: -250px;
        top: 0;
    }

    nav.active {
        left: 0;
    }
}