* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } body { transition: all 0.3s ease; } /* Sidebar Styles */ .sidebar { position: fixed; left: 0; top: 0; height: 100%; width: 78px; background: #11101D; padding: 6px 14px; z-index: 1; transition: all 0.5s ease; } .sidebar.open { width: 250px; } .sidebar .logo-details { height: 60px; display: flex; align-items: center; justify-content: space-between; position: relative; } .sidebar .logo-details .logo_name { color: #fff; font-size: 20px; font-weight: 600; opacity: 0; transition: all 0.5s ease; } .sidebar.open .logo-details .logo_name { opacity: 1; } .sidebar .logo-details #btn { position: absolute; top: 50%; right: 0; transform: translateY(-50%); font-size: 22px; text-align: center; cursor: pointer; transition: all 0.5s ease; } .sidebar i { color: #fff; height: 60px; min-width: 50px; font-size: 28px; text-align: center; line-height: 60px; } .sidebar .nav-list { margin-top: 20px; height: 100%; } .sidebar li { position: relative; margin: 8px 0; list-style: none; } .sidebar input { font-size: 15px; color: #fff; font-weight: 400; outline: none; height: 50px; width: 100%; border: none; border-radius: 12px; transition: all 0.5s ease; background: #1d1b31; } .sidebar.open input { padding: 0 20px 0 50px; width: 100%; } .sidebar li a { display: flex; height: 100%; width: 100%; border-radius: 12px; align-items: center; text-decoration: none; transition: all 0.4s ease; background: #11101D; } .sidebar li a:hover { background: #fff; } .sidebar li a .links_name { color: #fff; font-size: 15px; font-weight: 400; white-space: nowrap; opacity: 0; pointer-events: none; transition: 0.4s; } .sidebar.open li a .links_name { opacity: 1; pointer-events: auto; } .sidebar li a:hover .links_name, .sidebar li a:hover i { transition: all 0.5s ease; color: #11101D; } .sidebar li .tooltip { position: absolute; top: -20px; left: calc(100% + 15px); background: #fff; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); padding: 6px 12px; border-radius: 4px; font-size: 15px; font-weight: 400; opacity: 0; white-space: nowrap; pointer-events: none; transition: 0s; } .sidebar li:hover .tooltip { opacity: 1; pointer-events: auto; transition: all 0.4s ease; top: 50%; transform: translateY(-50%); } /* Main Section Styles */ .home-section { position: relative; background: #e4e9f7; min-height: 100vh; top: 0; left: 78px; width: calc(100% -78px); transition: all 0.5s ease; } .sidebar.open~.home-section { left: 250px; width: calc(100%-250px); } .home-section .text { display: inline-block; color: #11101D; font-size: 25px; font-weight: 500; margin: 18px; } /* Light Mode Styles */ body.light-mode { background-color: #f7f7f7; color: #333; } body.light-mode .sidebar { background: #f0f0f0; } body.light-mode .sidebar .logo-details .logo_name { color: #333; } body.light-mode .sidebar li a { background: #8f8f8f; color: #333; } body.light-mode .sidebar li a:hover { background: #ddd; } body.light-mode .sidebar li .tooltip { background: #333; color: #fff; } body, .sidebar { transition: all 0.3s ease; } .sidebar.open, .home-section { transition: all 0.5s ease; } /* LINE BREAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK */ /* Submenu Styles */ .submenu { display: none; padding-left: 20px; list-style-type: none; } .submenu li { margin: 10px 0; } .submenu li a { color: #fff; font-size: 14px; text-decoration: none; } .submenu li a:hover { background-color: #333; color: #fff; }