.roboto-300 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.roboto-400 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.roboto-600 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.roboto-700 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    color: #212529 !important;
}
.btn-success,
.btn-success:hover {
    background-color: #5a7834 !important;
    border-color: #5a7834 !important;;
}

.btn-primary,
.btn-primary:hover {
    background-color: #1d4c63 !important;
    border-color: #1d4c63 !important;
}
h1, h2, h3, h4 {
    color: #474747 !important;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
    color: #333;
    padding: 10px 20px;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #dee2e6;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

.sidebar {
    width: 250px;
    background-color: #f1f3f5;
    color: #212529;
    height: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    transition: transform 0.3s ease;
    overflow: hidden;
    z-index: 999;
    border-right: 1px solid #dee2e6;
}

.sidebar.hidden {
    transform: translateX(-100%);
}

.menu-level {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.menu-level.hidden {
    transform: translateX(100%);
}

.menu-level.active {
    transform: translateX(0%);
}

.menu-back {
    cursor: pointer;
    color: #6c757d;
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
    background-color: #e9ecef;
}

.menu-item {
    padding: 12px 20px;
    cursor: pointer;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item:hover {
    background-color: #e9ecef;
}

.menu-item.active {
    background-color: #ced4da;
    font-weight: bold;
}
.menu-item a{
    color: #495057;
}
.content {
    margin-top: 60px;
    margin-left: 250px;
    padding: 20px;
    transition: margin-left 0.3s ease;
}

.content.full {
    margin-left: 0 !important;
}

.footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 1px solid #dee2e6;
}

.social-icons a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

@media (max-width: 768px) {
    .header, .sidebar {
        display: none;
    }
    .content {
        margin-left: 0;
    }
}