@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

   body {
            font-family: 'Nunito';
            background-color: #f0f8ff;
        }
        
        .floating-card {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }
        
        :root{
            --blue: #3b82f6;
            --green: #4FD1C5;
            --light-blue: #dbeafe;
            --red: #ef4444;
            --grey: #f1f5f9;
            --dark-grey: #64748b;
            --dark: #1e293b;
            --light: #ffffff;
            --sidebar: #f8f9fa;
        }

        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito', sans-serif;
        }

        body{
            background: var(--grey);
        }

        a{
            text-decoration: none;
        }

        li{
            list-style: none;
        }


        #sidebar{
            position: fixed;
            width: 260px;
            height: 100vh;
            background: var(--sidebar);
            top: 0;
            left: 0;
            padding: 20px;
            box-shadow: 4px 0 15px rgba(0,0,0,0.15);
            z-index: 200;
        }

        #sidebar .brand{
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            margin-bottom: 5px;
        }

        #sidebar .brand img{
            width: 40px;
            height: 40px;
            border-radius: 12px;
            object-fit: cover;
        }

        #sidebar .brand .brand-text h2{
            display: flex;
            align-items: center;
            gap: 16px;
            color: #000000;
            font-size: 22px;
            font-weight: 700;
            line-height: 1;
            margin-top: 5px;
            margin-bottom: 0px;
        }

        #sidebar .brand .brand-text p{
            color: #2D3748;
            font-size: 10.5px;
            margin-top: 4px;
            }

        #sidebar .divider-side{
            display: block;
            width: 220px;
            height: 1px;
            background: rgba(224,225,226,0.5);
            margin: 10px 0px 25px;
        }

        .side-menu li{
            margin-bottom: 14px;
        }

        .side-menu li a{
            display: flex;
            align-items: center;
            gap: 14px;
            color: #adadad;
            padding: 14px 18px;
            border-radius: 14px;
            transition: 0.3s;
            font-size: 16px;
            font-weight: 500;
        }

        .side-menu li a i{
            font-size: 22px;
        }

        .side-menu li a:hover{
            background: var(--green);
            color: white;
        }

        .side-menu li.active a{
            background: var(--green);
            color: white;
            box-shadow: 0 3px 10px rgba(79,209,197,0.5);
        }

        #content{
            position: relative;
            width: calc(100% - 260px);
            left: 260px;
        }


        .topbar{
            height: 78px;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 25px;
            position: sticky;
            top: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            z-index: 100;
        }

        .topbar h2{
            color: white;
            font-size: 18px;
            font-weight: 700;
        }

        .topbar .left{
            display: flex;
            align-items: center;
            gap: 24px;
            flex: 1;
            margin-left: 0px;
        }

        .topbar .right{
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: auto;
        }

        .toggle-sidebar{
            font-size: 24px;
            color: white;
            cursor: pointer;
        }

        .nav-link{
            position: relative;
            text-decoration: none;
        }

        .notif-icon{
            font-size: 32px;
            color: #ffffff;
            transition: 0.3s;
        }

        .notif-icon.active{
            color: #ef4444;
        }

        .divider{
            width: 1px;
            height: 30px;
            background: rgba(255,255,255,0.5);
        }

        .profile{
            position: relative;
        }

        .profile-info{
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 14px;
            transition: 0.3s;
        }

        .profile-info:hover{
            background: rgba(255,255,255,0.15);
        }

        .profile-info img{
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
        }  

        .user-text{
            display: flex;
            flex-direction: column;
        }

        .user-text h4{
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin: 0;
        }

        .user-text p{
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            margin-top: 0px;
        }

        .profile-link{
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            width: 190px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px);
            transition: 0.3s;
            padding: 0;
        }

        .profile-link.show{
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .profile-link li{
            list-style: none;
        }

        .profile-link a{
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            text-decoration: none;
            color: #1e293b;
            font-size: 14px;
            transition: 0.3s;
        }

        .profile-link a i{
            font-size: 20px;
        }

        .profile-link a:hover{
            background: #f1f5f9;
        }

        .logout-btn{
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            text-decoration: none;
            color: #1e293b;
            font-size: 14px;
            transition: 0.3s;
        }

        .logout-btn i{
            font-size: 20px;
        }

        .logout-btn:hover{
            background: #f1f5f9;
        }