* {
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Roboto Flex", sans-serif;
  scrollbar-width: thin;
  scrollbar-color: #ff7500 transparent;
}
.dashbord-body{
  overflow: hidden;
  
}
body::-webkit-scrollbar {
  width: 2px;
}

body::-webkit-scrollbar-thumb {
  background: #ff7500;
  border-radius: 2px;
}

header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f2f2f2;
  overflow: visible;
  position: fixed;
  padding: 0.3% 0;
  height: fit-content;
  top: 4px;
  left: 0;
  width: 100%;
  z-index: 1000;
  margin-left: 300px;
  border-radius: 30px;
  width: calc(100% - 300px);
}

.header-right{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem;
  gap: 1rem;
  padding-right: 1.5rem;
  height: 60px;
}

.header-btns {
    display: flex;
    gap: 12px;
    flex: unset;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.header-btns.show {
    transform: translateX(0);
    opacity: 1;
}


.header-btn{
    padding:12px 26px;
    border-radius:15px;
    font-size:1rem;
    font-weight:500;
    text-decoration:none;
    transition:.25s ease;
    display:flex;
    align-items:center;
    gap:10px;
}

.header-btn-icon{
    width:28px;
    height:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.header-btn-icon img{
    width:55%;
    height:55%;
}

.white-circle{
    background:#fff;
}

.orange-circle{
    background:#ff7500;
}

.header-btn.start{
    background:#ff7500;
    color:#fff;
}

.header-btn.start:hover{
    opacity:.9;
}

.header-btn.login{
    background:#fff;
    color:#555;
}

.header-btn.login:hover{
    background:#f2f2f2;
}

.hamburger-wrapper{
    flex: unset;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.logo-container{
  height: 60px;
}
.logo-container img {
  width: clamp(120px, 15vw, 220px);
  height: 60px;
  object-fit: contain;
}


.hamburger-wrapper img{
  width: clamp(20px, 4vw, 22px);
  height: auto;
  object-fit: contain;
}
.hamburger-wrapper{
    display: none;
 }
.layout-wrapper {
  display: flex;
  align-items: start;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100vh;
  margin: 0 4px;
  scrollbar-width: thin;
  scrollbar-color: #0000 transparent;
}

.layout-wrapper::-webkit-scrollbar {
  width: 2px;
}

.layout-wrapper::-webkit-scrollbar-thumb {
  background-color: #0000;
  border-radius: 2px;
}

.control-panel-wrapper {
  flex: 0 0 300px;
  position: fixed;
  top: 10px;
  left: 0;
  height:fit-content; 
  overflow: hidden;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  background-color: #ff7500;
  z-index: 1999;
  margin-left: 10px;
}

.icon {
  transition: filter 0.3s ease;
  filter: none; 
}

.icon:hover {
  filter: brightness(0) saturate(100%) invert(57%) sepia(88%) saturate(1300%) hue-rotate(0deg);
}

.nav-header{
  display: flex;
  align-items: center;
  position: sticky;
  padding: 0 0.5rem;
  gap: 0.2rem;
  overflow: visible;
  position: fixed;
  z-index: 500;
  width: 280px;
  margin-top: 12px;
  background-color: #f8f9f9;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-header img{
  width: clamp(50px, 14vw, 80px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.nav-header p{
  font-size: clamp(1.1rem, 0.8vw + 0.8vh, 1.3rem);
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #ff7500;
  margin: 0; 
  line-height: 1.2;
}
.package-purchase {
  background: linear-gradient(135deg, #FFE9D6 15%, #FFF5EB 10%);
  width: 250px;
  padding: 50px 20px;
  margin: 20% auto;
  border-radius: 10px;
  box-sizing: border-box;
  color: #777;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  position: relative; 
}

.package-purchase p {
  font-size: clamp(1rem, 0.8vw + 0.8vh, 1.3rem);
  font-weight: 700;
}

.upgrade-note {
  font-size: clamp(1rem, 0.8vw + 0.8vh, 1.3rem);
}

.icon-circle {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ffe4de; 
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}


.icon-circle img {
  width: 20px;
  height: 20px;
}


.icon-circle:hover {
  transform: scale(1.1);
}


.icon-inner.shaking {
  animation: shake 1s;
}


@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.side-menu-wrapper {
  overflow-y: auto;
  padding-right: 5px;
  margin-top: 4rem;
  width: 280px;
  background: #f8f9f9;
  scrollbar-width: thin;
  scrollbar-color: transparent;
}

.side-menu-wrapper::-webkit-scrollbar {
  width: 6px;
}

.side-menu-wrapper::-webkit-scrollbar-thumb {
  border-radius: 2px;
}

.side-menu-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
}

.side-elements{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  padding-bottom: 2rem;
}
.element {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 0.1rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border-radius: 10px;
  margin: 5px 10px;
  width: fit-content;
  transition: background-color 0.3s ease; 
}

.element:hover {
  background: #ffe4de;
}

.element a{
    font-size: clamp(1rem, 0.8vw + 0.8vh, 1.3rem);
    color: #555;
    text-decoration: none;
    text-transform: capitalize;
}
.side-elements .element.active {
  position: relative;
}

.side-elements .element.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 90%;
  width: 4px;
  background-color: #ff7500;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
