:root {
  --color-white: #fff;
  --color-white-100: rgba(255, 255, 255, 0.1);
  --color-white-200: rgba(255, 255, 255, 0.2);
  --color-white-400: rgba(255, 255, 255, 0.4);
  --color-white-800: rgba(255, 255, 255, 0.8);
  --color-white-900: rgba(255, 255, 255, 0.9);
  --color-black: #1e1e1e;
  --color-black-100: rgba(0, 0, 0, 0.1);
  --color-black-50: rgba(211, 197, 197, 0.39);
  --color-black-200: rgba(0, 0, 0, 0.2);
  --color-black-500: rgba(0, 0, 0, 0.5);
  --color-black-600: rgba(0, 0, 0, 0.6);
  --color-blue-800: #007ff7;
  --app-color-white: rgb(252, 255, 251);
  --color-red: rgba(255, 2, 2, 0.788);
  --color-green: #11dd4e;
  --font-family: "Lexend", sans-serif;
  --border-radius: 10px;
  --transition: all 0.3s ease;
}


:root {
  /* Core Theme Colors */
  --primary: #2c3e50;     /* Deep Navy */
  --secondary: #1e90ff;   /* Strong Sky Blue */
  --tertiary: #8e44ad;    /* Royal Purple */

  /* Semantic Colors */
  --success: #27ae60;     /* Emerald Green */
  --info: #3498db;        /* Blue Info */
  --warning: #f39c12;     /* Bright Orange */
  --danger: #e74c3c;      /* Classic Red */

  /* Neutrals */
  --white: #ffffff;
  --light: #ecf0f1;       /* Cloud Light Gray */
  --gray-light: #bdc3c7;  /* Light Gray */
  --gray: #95a5a6;        /* Medium Gray */
  --gray-dark: #7f8c8d;   /* Darker Gray */
  --dark: #2c3e50;        /* Deep Navy Again */
  --black: #000000;

  /* Accent (for American feel) */
  --accent-red: #c0392b;     /* Flag Red */
  --accent-blue: #0033a0;    /* Flag Blue */
  --accent-gold: #ffd700;    /* Presidential Gold */
  --accent-silver: #bdc3c7;  /* Medal Silver */

  /* Transparent Variants */
  --primary-opaque: rgba(44, 62, 80, 0.85);
  --danger-opaque: rgba(231, 76, 60, 0.85);
  --success-opaque: rgba(39, 174, 96, 0.85);
}



* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  height: 100vh;
  user-select: none;
  font-family: var(--font-family);
  overflow: hidden;
  padding: 0;
  margin: 0;
  background-color: #121212;
  color: #ffffff;
}

input, button, select, textarea {
  padding: 8px;
  margin: 8px 0;
  display: inline-block;
  background: var(--color-white-400);
  /* box-shadow: 0 2px 7px rgba(0, 0, 0, 0.363); */
  text-align: left;
  font-family: var(--font-family);
  font-weight: 100;
  border-radius: 5px;
  transition: 80ms;
  color: var(--color-white);
}

#loading {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../background/lock.gif) center/cover no-repeat;
  z-index: 9999;
}

.navbar {
  width: 70%;
  padding: 0.1rem 0;
  position: fixed;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white-900);
  box-shadow: 0 2px 10px var(--color-black-100);
  background: linear-gradient(to right, #6e1438, #270598, #e54c2d);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20000000;
  animation: top-to-bottom 0.3s;
  border-radius: var(--border-radius);
}

.navbar > ul {
  display: flex;
  align-items: center;
}

.navbar li {
  position: relative;
  margin: 0 4px;
  cursor: url(../cursor/Link.cur), pointer;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.288);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.navbar .leftLi.logo img {
  transform: translateY(1px);
}

.navbar svg {
  fill: var(--color-white);
}

.navbar .leftLi {
  padding: 4px 8px;
}

.navbar .leftLi a {
  text-decoration: none;
  color: var(--color-white);
}

.navbar .leftLi:hover {
  color: var(--color-white);
  border-radius: var(--border-radius);
  background-color: var(--color-white-200);
}

li.app_name {
  display: none;
  font-weight: 900 !important;
}

.navbar__right li {
  margin: 0 10px;
}

.navbar__right li svg {
  transform: scale(0.8);
}

.wifi svg {
  transform: translateY(1px) scale(0.8) !important;
}

.navbar__right .clock #clock {
  margin-left: 15px;
  margin-right: 15px;
}

.navbar__right li .control-center {
  width: 32px;
  height: 19px;
  transform: scale(0.8) translateY(1px);
}

.navbar__right .battery {
  margin: 0;
  display: flex;
  cursor: pointer;
  user-select: none;
  position: relative;
  border-radius: 4px;
  align-items: center;
  padding: 0.3rem 0.5rem;
  background: transparent;
  transition: var(--transition);
}

.navbar__right .battery.selected {
  background: var(--color-white-200);
}

.navbar__right .battery__container {
  width: 22px;
  height: 10px;
  padding: 1px;
  position: relative;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar__right .battery__container::after {
  content: "";
  background: rgba(255, 255, 255, 0.4);
  width: 3px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.navbar__right .battery__progress {
  height: 100%;
  display: flex;
  background: white;
  border-radius: 2px;
}

.navbar__right .battery__progress .is-charging {
  display: none;
}

.is-charging-visible {
  display: block !important;
}

.navbar__right .battery__low {
  background-color: var(--color-red);
}

.navbar__right .battery__high {
  background-color: var(--color-green);
}

.navbar__right .battery__text {
  margin-right: 4px;
}

.navbar__right .battery__popup {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  opacity: 0;
  width: 220px;
  transition: var(--transition);
  padding: 4px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(60px);
  border-radius: 8px;
}

.navbar__right .battery__popup.opened {
  opacity: 1;
}

.navbar__right .battery__popup header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.navbar__right .battery__popup header h3 {
  font-weight: 600;
}

.navbar__right .battery__popup header span {
  opacity: 0.75;
}

.navbar__right .battery__popup p {
  margin-top: 4px;
  padding: 0 10px;
}

.navbar__right .battery__popup hr {
  margin: 6px 8px;
  border: 0;
  border-radius: 99px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar__right .battery__popup button {
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  color: white;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

.navbar__right .battery__popup button:hover {
  background-color: var(--color-blue-800);
}

.navbar__right .battery__popup button:active {
  background-color: #0063f7;
}

li > ul {
  display: none;
  position: block;
  align-items: center;
  flex-direction: column;
  left: 0;
  top: 100%;
  margin-top: 1px;
  font-weight: 600;
  padding: 4px;
  min-width: 200px;
  background: var(--color-white-400);
  backdrop-filter: blur(11px);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.363);
}

li:hover > ul {
  display: flex;
}

li > ul > li {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 5px;
  margin-bottom: 5px !important;
}

li > ul > li:last-child {
  border-bottom: 0;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

li > ul > li > button {
  color: var(--color-white);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  text-align: left;
  font-family: var(--font-family);
  padding: 4px 8px;
  border-radius: var(--border-radius);
  transition: 80ms;
  cursor: url(../cursor/Link.cur), pointer;
}

li > ul > li > button:hover {
  color: var(--color-white);
  background: var(--color-blue-800);
}

li > ul > li > button:active {
  background-color: #0063f7;
}

li > .menu__container {
  display: none;
  position: absolute;
  width: 380px;
  border-radius: 20px;
  top: 100%;
  right: 50%;
  height: 24rem;
  transform: translateX(50%);
  background-color: rgba(224, 222, 222, 0.349);
  backdrop-filter: blur(11px);
  border: 1px solid rgba(70, 50, 77, 0.308);
  box-shadow: 0 7px 15px rgba(26, 26, 26, 0.24);
  overflow: hidden;
  padding: 15px;
}

li:hover .menu__container {
  display: flex;
}

li > .menu__container > .grid__controling {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-template-areas:
      "Toggles Toggles DoNotDisturb DoNotDisturb"
      "Toggles Toggles KeyboardBrightness Battery"
      "Display Display Display Display"
      "Audio Audio Audio Audio"
      "Music Music Music Music";
  grid-gap: 1em 1em;
}

li > .menu__container > .grid__controling .control_center--grid {
  display: grid;
  box-shadow: 0 5px 15px rgba(44, 44, 44, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.178);
  overflow: hidden;
  border-radius: 12px;
}

.menu__container > .grid__controling .col-5 {
  grid-area: Toggles;
}

.menu__container > .grid__controling .col-7 {
  grid-area: DoNotDisturb;
}

.menu__container > .grid__controling .col-3--brightness {
  grid-area: KeyboardBrightness;
}

.menu__container > .grid__controling .col-3--battery {
  grid-area: Battery;
}

.menu__container > .grid__controling .col-12--light {
  grid-area: Display;
}

.menu__container > .grid__controling .col-12--volume {
  grid-area: Audio;
}

.menu__container > .grid__controling .col-12--music {
  grid-area: Music;
}

.grid__controling .control_center--grid button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  transition: all 120ms ease-in-out;
  font-family: var(--font-family);
  cursor: url(../cursor/Link.cur), pointer;
}

.sound,
.brightness {
  position: relative;
}

.menu__container > .grid__controling input[type="range"] {
  -webkit-appearance: none;
  outline: 0;
  border: 0;
}

.sound img,
.brightness img {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translatey(-50%);
}

.menu__container > .grid__controling input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 2rem;
  width: 2rem;
  background-color: var(--color-white);
  box-shadow: -2px 0px 3px -2px #5f6063, -340px 0 0 320px #9bb2ff;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.226);
  cursor: pointer;
}

.grid__controling input[type="range"]::-webkit-slider-runnable-track {
  margin: 10px;
  background: rgba(255, 255, 255, 0.404);
  border-radius: 50px;
  overflow: hidden;
}

.grid__controling .control_center--grid button p {
  display: block;
  font-family: var(--font-family);
}

.nobtn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.nobtn svg {
  background-color: transparent !important;
}

.grid__controling .control_center--grid button svg {
  background-color: var(--color-blue-800);
  padding: 5px;
  border-radius: 50%;
  margin: 0 5px;
}

.col-7 button svg {
  background-color: #b63333 !important;
}

.col-7 button:focus {
  background: #b63333 !important;
  color: var(--color-white);
}

.grid__controling .control_center--grid button:focus {
  background: var(--color-blue-800);
  color: var(--color-white);
}

.grid__controling .control_center--grid .musicPlayer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.musicPlayer--image {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
}

.musicPlayer--image img {
  width: 50px;
  margin: 0 0 0 10px;
}

.musicPlayer--content {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
}


@media screen and (max-width: 600px) {
  .navbar__right .clock #clock {
      margin-left: 0;
  }
}

.dock {
  overflow-x: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  padding: 0.2rem 0.5rem 0 0.5rem;
  bottom: 3%;
  left: 50%;
  height: 65px;
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-white-200);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.555);
  z-index: 100000;
  width: fit-content;
  max-width: 80%;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .dock {
      border-radius: 20px;
  }
}

.dock .point {
  width: 6px;
  height: 6px;
  margin: 0;
  background: #f08080;
  border-radius: 50%;
  display: none;
  animation: top-to-bottom 0.3s;
  transition: var(--transition);
}

.dock .column {
  width: 1px;
  height: 45px;
  margin: 0 4px;
  background: var(--color-white-400);
}

.dock .icon {
  position: relative;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  outline: none;
  transition: var(--transition);
  transform: translate3d(0px, 0%, 0px);
  -webkit-tap-highlight-color: transparent;
  min-width: 3rem;
  border-radius: 2rem;
  margin-right: 2px;
}

.dock .icon::after {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.39);
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 95px;
  height: 25px;
  padding: 4px 3px 10px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  clip-path: polygon(
      100% 0%,
      100% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 80%,
      43% 80%,
      50% 101%,
      57% 80%,
      100% 80%,
      100% 0%
  );

  display: none;
}

.dock .icon:nth-child(1):hover::after {
  content: "New";
}

.dock .icon:nth-child(2):hover::after {
  content: "Daily Feed";
}

.dock .icon:nth-child(3):hover::after {
  content: "Products";
}

.dock .icon:nth-child(4):hover::after {
  content: "Services";
}

.dock .icon:nth-child(5):hover::after {
  content: "Manager";
}

.dock .icon:nth-child(6):hover::after {
  content: "VScode";
}

.dock .icon:nth-child(7):hover::after {
  content: "Mail";
}

.dock .icon:nth-child(8):hover::after {
  content: "Location";
}

.dock .icon:nth-child(9):hover::after {
  content: "maps";
}

.dock .icon:nth-child(10):hover::after {
  content: "Calculator";
}

.dock .icon:nth-child(11):hover::after {
  content: "notes";
}

.dock .icon:nth-child(12):hover::after {
  content: "terminal";
}

.dock .icon:nth-child(13):hover::after {
  content: "Preferences";
}

.dock .icon img {
  width: 2.5rem;
  transition: var(--transition);
  transform: translateY(-2.5px);
  display: block;
}

.dock .icon:hover img {
  border-radius: 10px;
  /* margin: 0 0 40px 0; */
  width: 3.5rem;
  background-color: green;

}

/* .dock .icon:hover + .icon img {
  width: 3rem;
  margin: 0 0 25px 0;
} */

.dock .icon img:active {
  filter: brightness(0.6) drop-shadow(0 0 10px #2c2c2c);
}

.container__Window {
  width: 100%;
  height: 90%;
  justify-content: space-around;
  align-items: center;
  display: none;
}

.window {
  display: none;
  min-width: 50%;
  max-width: 80%;
  margin-left: 10%;
  height: fit-content;
  overflow: hidden;
  border-radius: 1rem;
  background: transparent;
  box-shadow: 0 20px 30px var(--color-black-500);
  border: 1px solid #ffffff34;
  animation: zoom-out 0.3s;
  z-index: 100;
  /* touch-action: none; */
  padding: 10px;
  color: var(--app-color-white);
  border: none;
  background: rgba(0, 0, 0, 0.9);
}


.event-info{
  margin: 10px;
}
@media screen and (max-width: 900px) {
  .window {
      margin-left: 0px!important;
      max-width: 100%;
  }
}

.window__taskbar {
  height: 60px;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  background-color: var(--app-color-white);
  border-radius: 30px;
  z-index: 20;
}

.window__taskbar--actions {
  display: flex;
  align-items: center;
}

.window__taskbar:hover button::after {
  color: #000;
}

.window__taskbar--actions button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.8rem;
  height: 0.8rem;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.window__taskbar--actions button:not(:last-child) {
  margin-right: 8px;
}

.window__taskbar--actions button:nth-child(1) {
  background-color: #ff5f56;
  box-shadow: 0 0 0 0.5px #e0443e;
}

.window__taskbar--actions button::after {
  display: block;
  color: transparent;
  font-weight: 900;
}

.window__taskbar--actions button:nth-child(1)::after {
  content: "×";
}

.window__taskbar--actions button:nth-child(1):hover {
  background-color: #fc3c32;
}

.window__taskbar--actions button:nth-child(2) {
  background-color: #ffbd2e;
  box-shadow: 0 0 0 0.5px #dea123;
}

.window__taskbar--actions button:nth-child(2)::after {
  content: "−";
}

.window__taskbar--actions button:nth-child(2):hover {
  background-color: #ffa600;
}

.window__taskbar--actions button:nth-child(3) {
  background-color: #27c93f;
  box-shadow: 0 0 0 0.5px #1aab29;
}

.window__taskbar--actions button:nth-child(3)::after {
  content: "⤡";
}

.window__taskbar--actions button:nth-child(3):hover {
  background-color: #12aa29;
}

.window__taskbar--content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.window__taskbar--content h2 {
  color: var(--color-black);
  font-weight: 600;
}

.terminal .window__taskbar,
.Vscode .window__taskbar,
.maps .window__taskbar {
  height: 50px;
}

.terminal_content {
  width: 100%;
  height: 91%;
  overflow-y: scroll;
  padding-left: 1rem;
  background-color: rgba(5, 5, 99, 0.63);
  backdrop-filter: blur(12px);
  color: rgb(235, 235, 235);
  font-size: 20px;
  font-family: "Roboto Mono", monospace;
}

.color_green {
  color: green;
}

.color_blue {
  color: #1f48ff;
}

.window__taskbar--right {
  width: 60%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 900px) {
  .window__taskbar--right {
      width: 70%;
  }
}

.Customize__icon span {
  border: 1px solid rgba(204, 200, 200, 0.412);
  border-radius: 9px;
  transition: var(--transition);
  padding: 5px;
  cursor: url(../cursor/Link.cur), pointer;
}

.window__taskbar--right .containerSearch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45%;
  height: 75%;
  background-color: var(--app-color-white);
  border-radius: 5px;
  border: 1px solid rgba(123, 123, 123, 0.412);
  padding-left: 8px;
}

.window__taskbar--right .containerSearch svg {
  fill: rgba(123, 123, 123, 0.412);
}

.window__taskbar--right input[type="search"] {
  width: 85%;
  height: 100%;
  background-color: transparent;
  color: var(--color-black);
  font-size: 18px;
  padding-right: 10px;
  font-family: var(--font-family);
}

.window .content {
  width: 100%;
  height: 92%;
  display: block;
}

.Parent__content--typing {
  width: 70%;
  height: 100%;
  border-top: 1px solid #e0e2e1;
  background-color: var(--app-color-white);
}

.content__typing {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  display: none;
  color: var(--color-black);
  font-weight: 900;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  padding: 16px;
}

.content__sidebar {
  width: 30%;
  height: 100%;
  background: var(--color-white-400);
  backdrop-filter: blur(1rem);
}

.content__sidebar--notes {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: transparent;
}

.content__sidebar--notes input {
  width: 85%;
  padding-left: 10px;
  height: 10%;
  font-family: var(--font-family);
  font-size: 18px;
  outline: none;
  color: var(--color-black);
  transition: var(--transition);
  border-radius: 4px;
  margin: 10px auto;
  font-weight: 100;
  display: block;
}

.content__sidebar--notes input:hover {
  background-color: rgba(0, 0, 0, 0.336);
}

.content__sidebar--notes input::placeholder {
  color: white;
}

.spotlight_serach {
  width: 400px;
  height: 50px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 1px solid var(--color-white-100);
  justify-content: start;
  border-radius: 8px;
  background-color: transparent;
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 10px 10px rgba(37, 37, 37, 0.137);
}

.spotlight_serach svg {
  margin-left: 10px;
}

.spotlight_serach input {
  width: 90%;
  font-size: 20px;
  font-weight: 100;
  font-family: Lexend;
  margin-left: 10px;
  padding-right: 10px;
}

.spotlight_serach input::placeholder {
  color: white;
}

.launchpad {
  display: none;
  animation: opacity 300ms;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.searchbox {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.searchbox .searchContainer {
  height: 30px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-top: 1px solid rgba(255, 255, 255, 0.582);
  border-bottom: 1px solid rgba(255, 255, 255, 0.582);
  border-right: 1px solid rgba(255, 255, 255, 0.219);
  border-left: 1px solid rgba(255, 255, 255, 0.219);
  border-radius: 4px;
  padding: 0 3px;
}

.searchbox .searchContainer svg {
  fill: #fff;
}

.searchbox input {
  text-align: center;
  color: #fff;
  font-size: 17px;
  height: 100%;
  font-family: "Roboto", sans-serif;
}

.searchbox input::placeholder {
  color: #fff;
  font-weight: 100;
}

.searchbox input:focus {
  text-align: left;
}

.Apps-container {
  width: 90%;
  height: 60%;
  margin: 0 auto;
  display: grid;
  grid-row-gap: 10px;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 25% 25% 25% 25%;
}

.launchpad .child-launchpad {
  display: flex;
  place-items: center;
  flex-direction: column;
  cursor: url(../cursor/Link.cur), pointer;
}

.launchpad .child-launchpad img {
  width: 80px;
}

@media screen and (min-width: 1200px) {
  .launchpad .Apps-container {
      grid-row-gap: 20px;
  }

  .launchpad .child-launchpad img {
      width: 80px;
  }

  .launchpad .child-launchpad strong {
      font-size: 18px;
  }
}

.launchpad .child-launchpad:active {
  animation: vibrate 0.1s ease-in forwards infinite alternate;
  transition: transform 0.1s cubic-bezier(0.42, 0, 1, 0.2);
}

.launchpad .child-launchpad strong {
  color: #fff;
}

::-webkit-scrollbar {
  background-color: #fff;
  width: 16px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 4px solid #fff;
}

::-webkit-scrollbar-button {
  display: none;
}

@keyframes zoom-out {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.2);
  }
  100% {
      transform: scale(1);
  }
}

@keyframes to-top-bottom {
  0% {
      transform: translate(0);
  }
  25% {
      transform: translateY(-12px);
  }
  50% {
      transform: translateY(-3px);
  }
  75% {
      transform: translateY(-21px);
  }
  100% {
      transform: translateY(0px);
  }
}

@keyframes vibrate {
  0% {
      transform: rotate(9deg);
  }
  100% {
      transform: rotate(-9deg);
  }
}

@keyframes top-to-bottom {
  0% {
      transform: translateY(-60px);
      opacity: 0;
  }
  100% {
      transform: none;
      opacity: 1;
  }
}

@keyframes opacity {
  0% {
      opacity: 0;
      transform: scale(1.2);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

.calculator {
  display: none;
  width: 20rem;
  max-width: 100%;
  height: 25rem;
  max-height: 80%;
  background: var(--color-black-500);
  backdrop-filter: blur(1rem);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem var(--color-black-500);
  border: 1px solid var(--color-white-200);
  animation: zoom-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.calculator__top {
  width: 100%;
  height: 30%;
  display: flex;
  flex-direction: column;
}

.calculator__top--taskabr {
  height: 40px;
  padding: 0 2px;
  display: flex;
  align-items: center;
}

.calculator__top--taskabr button {
  position: relative;
  width: 1px;
  height: 1px;
  padding: 8px;
  border-radius: 50%;
  margin-left: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator__top--taskabr button:nth-child(1) {
  background-color: #ff6059;
}

.calculator__top--taskabr button:nth-child(1):hover {
  background-color: #fc3c32;
}

.calculator__top--taskabr button:nth-child(2) {
  background-color: #ffbd2e;
}

.calculator__top--taskabr button:nth-child(2):hover {
  background-color: #ffa600;
}

.calculator__top--taskabr button:nth-child(3) {
  background-color: #28c941;
}

.calculator__top--taskabr button:nth-child(3):hover {
  background-color: #12aa29;
}

.calculator__top--taskabr button::after {
  display: block;
  font-size: 14px;
  color: transparent;
  font-weight: 900;
  position: absolute;
}

.calculator__top--taskabr:hover button::after {
  color: #000;
}

.calculator__top--taskabr button:nth-child(1)::after {
  content: "×";
}

.calculator__top--taskabr button:nth-child(2)::after {
  content: "−";
}

.calculator__top--taskabr button:nth-child(3)::after {
  content: "⤡";
}

.calculator__top--output {
  flex: 1;
  color: var(--color-white);
  font-size: 2rem;
  text-align: right;
  font-family: var(--font-family);
  border: none;
  background: transparent;
  padding: 0 0.8rem;
}

.input {
  width: 100%;
  height: 70%;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 20% 20% 20% 20% 20%;
}

.input .button {
  height: 100%;
  font-size: 1.8rem;
  font-family: "Montserrat";
  font-weight: bold;
  border: 1px solid rgba(95, 95, 95, 0.336);
}

.r-radius {
  border-bottom-right-radius: 15px;
}

.large {
  grid-column-start: span 2;
  border-bottom-left-radius: 15px;
}

.operator {
  background-color: #fd9e2a;
  color: #fff;
}

.number {
  background-color: #d6d6d6;
  color: rgb(0, 0, 0);
}

.operator-2 {
  background-color: #ccc9c9;
  color: rgb(0, 0, 0);
}

.context-menu {
  padding: 0 3px;
  position: absolute;
  border-radius: 7px;
  text-align: center;
  background: rgba(255, 255, 255, 0.219);
  border: 1px solid rgba(255, 255, 255, 0.281);
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.context-menu ul {
  padding: 0;
  margin: 0;
  min-width: 250px;
  list-style: none;
}

.context-menu ul li {
  margin: 4px 0;
  border-bottom: 1px solid rgba(65, 64, 64, 0.288);
}

.context-menu ul li:last-child {
  border: none;
}

.context-menu ul li button {
  color: var(--color-white);
  height: 100%;
  text-align: left;
  font-size: 15px;
  font-family: var(--font-family);
  border-radius: 5px;
  padding: 4px 8px;
  transition: 80ms;
  font-weight: 300;
  margin: 0 0 4px 0;
  display: flex;
  flex-direction: row;
  cursor: url(../cursor/Link.cur), pointer;
}

.context-menu ul button:hover {
  background: var(--color-blue-800);
}

.widgets-panel {
  position: fixed;
  top: 42px;
  right: 10px;
  transform: translateX(115%);
  transition: var(--transition);
  backdrop-filter: blur(1rem);
  border: 1px solid var(--color-white-200);
  border-radius: 16px;
  overflow: hidden;
}

.widgets-panel.open {
  transform: translateX(0);
}

.widgets-panel__calendar {
  background: transparent;
  padding-left: 10px;
  min-width: 160px;
}

.widgets-panel #taghvim {
  display: flex;
  align-items: center;
  justify-content: center;
}

.widgets-panel__calendar h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 8px;
  margin-bottom: -10px;
}

.widgets-panel__calendar h2 {
  color: #ffffff;
  font-size: 45px;
  font-weight: 300;
}

.widgets-panel__calendar li {
  position: relative;
  font-size: 15px;
  border-radius: 4px;
  margin-left: 8px;
  margin: 8px 0;
  width: 100%;
}

.widgets-panel__calendar li::before {
  content: "";
  width: 8px;
  height: calc(100% - 2px);
  position: absolute;
  border-radius: 99px;
  top: 2px;
  left: -12px;
}

.widgets-panel__calendar li.blue {
  color: #34aadc;
  background: rgb(59, 59, 59);
}

.widgets-panel__calendar li.blue::before {
  background: #34aadc;
}

.widgets-panel__calendar li.green {
  color: #32d74b;
  background: #2d402e;
}

.widgets-panel__calendar li.green::before {
  background: #32d74b;
}

.widgets-panel__calendar li.purple {
  color: #9c5ffd;
  background: #422948;
}

.widgets-panel__calendar li.purple::before {
  background: #7a3edb;
}

.widgets-panel__calendar li span {
  display: block;
}

.widgets-panel__calendar li span:first-child {
  font-weight: bold;
}



tr {
  border-bottom: 1px solid #ddd;
}

th, td {
  padding: 8px;
  text-align: left;
}

th {
  font-size: 15px;
}

.hidden-row {
  display: none;
}

.expand-btn {
  cursor: pointer;
  color: rgb(223, 223, 223);
  text-decoration: underline;
}



button:hover {
  background-color: #45a049;
}

select {
  border-color: #ccc;
}

.main-container {
  display: flex;
  height: 100vh;
}

.left-panel, .right-panel {
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.left-panel {
  width: 30%;
  border-right: 1px solid #8d8d8d;
  overflow-y: auto;
}

.right-panel {
  width: 70%;
  overflow-y: auto;
}

.collapsible {
  background-color: #4CAF50;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
}

.collapsible:after {
  content: '\002B';
  font-weight: bold;
  float: right;
}

.active:after {
  content: '\2212';
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-left: 4px solid #4CAF50;
  margin: 5px 0;
}

.group {
  margin-left: 20px;
}

.user {
  margin-left: 40px;
}

.guest {
  margin-left: 60px;
  color: #777;
}

.dashboard {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.block {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.block h3 {
  margin-top: 0;
}

.pic {
  margin-right: 20px;
}

.pic img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.info {
  display: flex;
  flex-direction: column;
  width: 100%;
}


.subtitle {
  margin: 5px 0;
  color: gray;
}

.description {
  margin: 10px 0 0;
}

.list-item-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}


.product-card {
  width: 20%;
  min-width: 220px;
  border-radius: 15px;
  overflow: hidden;
  /* background-color: rgb(59, 59, 59); */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  color: white;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h3 {
  margin: 10px 0;

}

.product-info p {
  margin: 10px 0;

}

.product-info button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-info button:hover {
  background-color: #0056b3;
}

.dropdown {
  position: relative;
  width: 96%;
  margin-bottom: 20px;
}

.dropdown-toggle {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  border-top: none;
  background: white;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
}

.dropdown-item {
  /* padding: 15px; */
  border-bottom: 1px solid #eee;
}

.dropdown-item h4 {
  margin: 0;
  font-size: 16px;
}

.dropdown-item small {
  display: block;
  color: #666;
}

.dropdown-item p {
  margin: 5px 0 0;
  color: #333;
}

.dropdown-item:hover {
  background: #2a2a2a;
}

input[type="checkbox"] {
  margin-right: 10px;
}

#selected-items {
  margin-top: 20px;
  width: 96%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
  background: #fafafa;
}

#selected-items h3 {
  margin-top: 0;
}

.selected-item {
  margin-bottom: 10px;
}

#total {
  margin-top: 10px;
}

#checkout-btn {
  margin-top: 20px;
  padding: 10px 20px;

  cursor: pointer;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
}

#category-filter {
  margin-bottom: 10px;
}

#contact-banner {
  margin-top: 40px;
  padding: 30px;
  background: #007BFF;
  color: white;
  text-align: center;
  border-radius: 10px;
}

#contact-banner input, #contact-banner textarea {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

#contact-banner button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 5px;
}

#contact-info {
  margin-top: 20px;
}

#contact-info div {
  margin: 10px 0;
  cursor: pointer;
}

#contact-info div:hover {
  text-decoration: underline;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  -ms-flex: 25%;
  flex: 25%;

  padding: 0 2px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  min-width: 50px;
  min-height: 100px;
}

@media screen and (max-width: 800px) {
  .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
  }

  .product-card {
      width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
  }
}

.scroll-container {
  width: 100%;
  height: 100vh;
  overflow: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.container-scroll {
  overflow: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dashboard {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5px;
}

.block {
  flex: 1;
  min-width: 300px;
}

.chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.stats-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
  text-align: center;
}

.stats-table th, .stats-table td {
  border: 1px solid #ccc;
  padding: 0px;
}

.up {
  color: green;
  font-weight: bold;
}

.down {
  color: red;
  font-weight: bold;
}

.no-change {
  color: gray;
}

.summary-bar {
  width: 100%;
  padding: 5px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  margin-bottom: 5px;
  font-weight: bold;
  display: flex;
  justify-content: space-around;
}




.post-new {
  width: 100%;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-header {

  margin-bottom: 20px;
  text-align: center;
}

.flex-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.flex-row select,
.flex-row input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

button.main-btn {
  width: 100%;
  background: blue;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .flex-row {
      flex-direction: column;
  }
}





    /* General form styling */
  
    /* Form element styling */
    .c-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
      color: #333;
    }
    
    .c-form input,
    .c-form select,
    .c-form textarea {
      width: 100%;
      padding: 8px 12px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 4px;
      box-sizing: border-box;
    }
    
    .c-form textarea {
      min-height: 120px;
      resize: vertical;
    }
    
    /* Dropdown container styling */
    .dropdown-container {
      margin-bottom: 15px;
    }
    
    .dropdown-container label {
      display: block;
      margin-bottom: 5px;
    }
    
    .dropdown-container select {
      flex: 1;
    }
    
    .dropdown-container button {
      padding: 8px 12px;
      background: #f0f0f0;
      border: 1px solid #ddd;
      border-radius: 4px;
      cursor: pointer;
    }
    
    /* Post categories styling */
    .post-categories {
      list-style: none;
      padding: 0;
    }
    
    .post-categories li {
      margin-bottom: 15px;
    }
    
    /* Date inputs container */
    .date-inputs-container {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 15px;
    }
    
    .date-inputs-container > div {
      flex: 1;
      min-width: 200px;
    }
    
    /* File upload styling */
    .fileContainer {
      margin-bottom: 15px;
    }
    
    /* Button styling */
    .main-btn {
      background: #4CAF50;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 4px;
      cursor: pointer;
    }
    
    .main-btn:hover {
      background: #45a049;
    }
    
    /* Responsive adjustments */
    @media (max-width: 600px) {
      .date-inputs-container > div {
        min-width: 100%;
      }
    }
    
    /* Progress bar styling */
    .progress-bar {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      position: relative;
    }
    
    .progress-bar::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      /* background: #ddd; */
      z-index: 1;
    }
    
    .progress-step {
      width: 30px;
      height: 30px;
      /* background: #fff; */
      border: 2px solid #ddd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }
    
    .progress-step.active {
      border-color: #4CAF50;
      background: #4CAF50;
      color: white;
    }
    
    .progress-step.completed {
      border-color: #4CAF50;
      background: #4CAF50;
      color: white;
    }
    
    /* Form steps styling */
    .form-step {
      display: none;
    }
    
    .form-step.active {
      display: block;
    }
    
    /* Navigation buttons */
    .form-navigation {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
    }
    
    .nav-btn {
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;

    }
    
    .prev-btn {
      background: #f0f0f0;
      color: #333;
    }
    
    .next-btn {
      background: #4CAF50;
      color: white;
    }
    
    /* Step titles */
    .step-title {
      margin-bottom: 20px;
      color: #333;
    }
    
    /* Content type specific styling */
    .content-type-info {
        /* background: #f8f9fa; */
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
        border-left: 4px solid #4CAF50;
    }
    
    .content-type-info h3 {
        margin-top: 0;
        color: #333;
    }
    
    .content-type-info p {
        margin-bottom: 0;
        color: #666;
    }
    
    .field-group {
        margin-bottom: 20px;
    }
    
    .field-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #333;
    }
    
    .field-group .field-description {
        color: #666;
        margin-bottom: 5px;
    }
    
    /* Hide all content type specific sections by default */
    .content-type-section {
        display: none;
    }
    
    /* Show active content type section */
    .content-type-section.active {
        display: block;
    }
  























    