        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Poppins', sans-serif;
            background: #f5f5f5;
            color: #2c3e50;
            overflow-x: hidden;
        }
.logooo img {
     width: 100%;
    margin: 15px 0px;
    object-fit: cover;

    min-height: 175px;

}
        .app {
            width: 100%;
            min-height: 100vh;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .app.menu-open { transform: translateX(280px); }

        .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #2c3e50, #34495e);
    color: white;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    overflow-y: auto;
    background: #020000;
    border-right: 1px solid #ffffff4f;
        }

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

        @media (min-width: 769px) {
            .sidebar { transform: translateX(0); width: 270px; }
            .app { transform: none !important; }
            .app.menu-open { transform: none; }
            .content { margin-left: 270px; }
        }

        .sidebar .logo-area {
            font-size: 24px;
            font-weight: 700;
            padding: 30px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 20px;
        }

        .logo-area span {
            font-size: 14px;
            display: block;
            color: #bdc3c7;
            font-weight: 400;
        }

        .menu { 
            list-style: none;
        }
   
        .menu a {
          display: block;
    padding: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.3s;
    font-size: 13px;
        }

        .submenu {
        list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background-color: rgba(0, 0, 0, 0.1);
    margin-left: 20px;
        }

        
.menu{
   padding: 5px;
    font-size: 14px;
    color: #767778;
}


























.menu a i {
    color: #d4af37;
    min-width: 20px;
    text-align: center;
    font-size: 16px;
    margin-right: 10px;
}

.menu a:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #fff;
}

.menu a:hover i {
    color: #d4af37;
    transform: scale(1.1);
}

.menu a.active {
    background: rgba(212, 175, 55, 0.15);
    color: #fff;
    border-left: 3px solid #d4af37;
}
















        .dropdown > a .fa-chevron-down {
            float: right;
            transition: transform 0.3s;
        }


        .submenu a { 
             padding: 5px;
    font-size: 14px;
    color: #767778;
        }
.submenu.active {
    max-height: 500px;
}
.dropdown.active > a .fa-chevron-down {
    transform: rotate(180deg);
}
        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: transform 0.3s;
        }

        @media (min-width: 769px) { .topbar { left: 270px; } }
        .topbar.hidden { transform: translateY(-100%); }

        .topbar .logo {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
        }
        .topbar .logo span {
            font-size: 12px;
            color: #7f8c8d;
            display: block;
        }
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .menu-toggle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2001; 
        }

        @media (min-width: 769px) { .menu-toggle { display: none; } }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s;
        }


        /* .content {
            min-height: 100vh;
            padding: 100px 20px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        } */

        .card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            max-width: 800px;
            width: 100%;
            text-align: center;
        }

        .current-page {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            color: #7f8c8d;
        }