* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f8fafc;
    color: #17213a;
}

.app {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */

.sidebar {
    width: 245px;
    background: #061b3d;
    color: white;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo {
    height: 115px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: #1264e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 30px !important; 
    height: 30px !important;
    object-fit: contain;
    display: block;
}

.logo strong {
    display: block;
    font-size: 20px;
}

.logo span {
    color: #9daac0;
}

.menu {
    padding: 25px 18px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.menu-item:hover,
.menu-item.active {
    background: #1464e8;
}

.logout {
    margin-top: auto;
    padding: 25px 18px;
}

.logout a {
    color: white;
    text-decoration: none;
    display: flex;
    gap: 15px;
    padding: 15px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* =========================================
   RESPONSIVE - SIDEBAR
   ========================================= */

@media (max-width: 768px) {

    .sidebar {
        width: 70px;
    }

    .logo {
        justify-content: center;
        padding: 15px;
    }

    .logo > div:last-child {
        display: none;
    }

    .menu {
        padding: 20px 10px;
    }

    .menu-item {
        justify-content: center;
        padding: 14px 10px;
    }

    .menu-item span:last-child {
        display: none;
    }

    .logout {
        padding: 20px 10px;
    }

    .logout a {
        justify-content: center;
        padding: 14px 10px;
        font-size: 0;
    }

    .logout a span {
        font-size: 20px;
    }
}