@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

body {
  background-color: #1e2d24;
  color: #ededed;
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
}

body,
.SideBar {
  transition: background-color 0.5s ease, color 0.5s ease;
}

.Layout {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.SideBar {
  width: 13vw;
  max-width: 13vw;
  min-width: 13vw;
  height: 99vh;
  margin: 4px;
  border: #a3b18a solid 1px;
  border-radius: 10px;
  background-color: #2d3c33;
  text-align: center;
  padding-top: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transform: translateX(-100%);
  opacity: 0;
}

.SideBarOptions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  text-decoration: none;
}

.Navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
  text-decoration: none;
  background-color: #bbdbc1;
  /* background-color: #94bd9b; */
  color: #333333;
  border: #333333 2px solid;
  overflow: hidden;
  height: 5vh;
  width: 95%;
  border-radius: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.Navigation:hover {
  transform: translateY(-5px);
  background-color: #4b6b58;
  color: #ededed;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.Logout {
  display: none;
  position: absolute;
  bottom: 8px;
}

/* Theme styles */
html.dark-mode body {
  background-color: #1e2d24;
  color: #ededed;
}

html.light-mode body {
  background-color: #f7f7f7;
  color: #333333;
}

html.dark-mode .SideBar {
  background-color: #2d3c33;
}

html.light-mode .SideBar {
  background-color: #edffe9;
}

html.dark-mode .TimerRow {
  color: #ededed;
  transition: color 0.5s ease;
}

html.light-mode .TimerRow {
  color: #333333;
  transition: color 0.5s ease;
}

html.dark-mode .NotificationsRow {
  color: #ededed;
  transition: color 0.5s ease;
}

html.light-mode .NotificationsRow {
  color: #333333;
  transition: color 0.5s ease;
}

html.dark-mode .TimerSettingsLayot {
  background-color: #101a14;
  transition: background-color 0.5s ease;
}

html.light-mode .TimerSettingsLayot {
  background-color: #eeeeee;
  transition: background-color 0.5s ease;
}

html.dark-mode .NotificationsSettingsLayout {
  background-color: #101a14;
  transition: background-color 0.5s ease;
}

html.light-mode .NotificationsSettingsLayout {
  background-color: #eeeeee;
  transition: background-color 0.5s ease;
}

html.dark-mode .AppearanceLayout {
  background-color: #101a14;
  transition: background-color 0.5s ease;
}

html.light-mode .AppearanceLayout {
  background-color: #eeeeee;
  transition: background-color 0.5s ease;
}

html.dark-mode .TasksLayout {
  background-color: #101a14;
  transition: background-color 0.5s ease;
}

html.light-mode .TasksLayout {
  background-color: #eeeeee;
  transition: background-color 0.5s ease;
}

html.dark-mode .ModalContent {
  background-color: #203829;
  transition: background-color 0.5s ease;
}

html.light-mode .ModalContent {
  background-color: #eeeeee;
  transition: background-color 0.5s ease;
}

html.light-mode .PriorityDropdownToggle {
  background-color: #eeeeee;
  border-color: #6b8f71;
  color: #f87171;
}

html.light-mode .PriorityDropdownToggle:hover {
  background-color: #dddddd;
}

html.light-mode .PriorityDropdownMenu {
  background-color: #eeeeee;
  border-color: #6b8f71;
}

html.dark-mode .InputWrapper input {
  background-color: #1e1e1e;
  transition: background-color 0.5s ease;
}

html.light-mode .InputWrapper input {
  background-color: #eeeeee;
  color: #333333;
  transition: color 0.5s ease, background-color 0.5s ease;
}

html.light-mode .DropDownSwticher {
  background-color: #eeeeee;
  color: #333333;
  transition: color 0.5s ease, background-color 0.5s ease;
}

html.dark-mode .DropDownSwticher {
  transition: color 0.5s ease, background-color 0.5s ease;
}

html.light-mode .DropDownOptions {
  background-color: #eeeeee;
  color: #333333;
  transition: color 0.2s ease, background-color 0.2s ease;
}

html.dark-mode .DropDownOptions {
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* Dark mode hover style */
html.dark-mode .Navigation:hover {
  background-color: #58725d;
  color: #ededed;
}

/* Light mode hover style */
html.light-mode .Navigation:hover {
  background-color: #4b6b58;
  color: #ededed;
}

html.light-mode .DropDownOptions:hover {
  background-color: #58725d;
}

html.light-mode .SettingsIcon {
  color: black;
  transition: color 0.5s ease;
}

html.light-mode .Restart {
  color: black;
  transition: color 0.5s ease;
}

.SideBar.hide {
  transform: translateX(0);
  opacity: 1;
}

.bars {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1100;
  font-size: 25px;
  cursor: pointer;
  transition: margin-left 0.3s ease;
}

.bars.shift-left {
  margin-left: 13vw;
}

.LightMode:hover i {
  transform: rotate(180deg);
}

.LightMode i {
  transition: transform 0.3s ease;
}

/* .DarkMode:hover i {
  transform: rotate(180deg);
}

.DarkMode i {
  transition: transform 0.3s ease;
} */

.MainPageContent.shifted {
  margin-left: 13vw;
  transition: margin-left 0.3s ease;
}

.MainPageContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
  margin-right: 13vw;
  transition: margin-left 0.3s ease;
}

.Controls {
  display: flex;
  gap: 10px;
}

.InputField {
  position: relative;
  bottom: 9vw;
}

.InputTask {
  height: 5vh;
  width: 20vw;
  padding: 4px;
  display: none;
}

.AddTask {
  height: 5vh;
  width: 3.5vw;
}

.Tasks {
  display: flex;
  gap: 20px;
  /* border: #a3b18a solid 4px; */
}

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

.ModeButtons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ModeButtons button {
  height: 55px;
  width: 120px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  cursor: pointer;
}

.mode-active {
  background-color: #6b6868;
}

.CycleIndicator {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  min-height: 20px;
}

.CycleWrapper {
  position: relative;
  width: 20px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Indicator {
  position: absolute;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.Circle {
  opacity: 1;
  z-index: 1;
}

.FilledCircle {
  opacity: 0;
  z-index: 2;
}

.Timer {
  font-size: 80px;
  text-align: center;
  padding: 20px;
  padding-top: 10px;
}

.PlayButton {
  height: 55px;
  width: 120px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

.PauseButton {
  height: 55px;
  width: 120px;
  border: none;
  border-radius: 15px;
  display: none;
  cursor: pointer;
}

.Play {
  font-size: 30px;
}

.Pause {
  font-size: 30px;
}

.RestartButton {
  background: none;
  border: none;
  cursor: pointer;
}

.Restart {
  font-size: 30px;
  color: #ededed;
}

.SettingsButton {
  background: none;
  border: none;
  cursor: pointer;
}

.SettingsIcon {
  font-size: 30px;
  color: #ededed;
}

.ComingSoon {
  position: absolute;
  top: 45vh;
  left: 43vw;
  font-size: 50px;
  font-weight: 600;
}

/* Dark and Light Mode Styling */

.Moon {
  font-size: 30px;
}

.DarkMode {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: none;
  cursor: pointer;
}

.DarkModeDiv {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
}

.Sun {
  font-size: 30px;
}

.LightMode {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: none;
  cursor: pointer;
}

.LightModeDiv {
  position: fixed;
  top: 20px;
  right: 20px;
}

/* Tasks Page CSS */
.Plus {
  font-size: 30px;
}

.AddTasks {
  margin: 10px;
}

/* Settings Page Styling */

.SettingsContent {
  padding: 0 20px 45px 0; /* For Windows */
  /* padding: 0 20px 150px 0; For Linux */
}

.TimerSettingsLayot {
  /* height: 40vh; For Windows */
  /* height: 32vh; For Linux */
  height: auto;
  min-height: 300px;
  width: 45vw;
  border: none;
  border: 2px solid #6b8f71;
  border-radius: 30px;
  padding: 20px;
  margin: 5px;
}

.NotificationsSettingsLayout {
  /* height: 40vh; For Windows */
  /* height: 32vh; For Linux */
  height: auto;
  min-height: 300px;
  width: 45vw;
  border: none;
  border: 2px solid #6b8f71;
  border-radius: 30px;
  padding: 20px;
  margin: 5px;
  margin-top: 20px;
}

.Timers {
  padding: 5px;
  font-size: 25px;
}

.TimerRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  font-size: 18px;
  color: white;
}

.InputWrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.InputWrapper input {
  width: 80px;
  height: 40px;
  border: none;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  color: white;
  border: 1px solid #6b8f71;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.PomodoroModeToggle {
  padding: 10px 0 0 10px;
}

.NotificationSettingsHeading {
  padding: 5px;
  font-size: 25px;
}

.NotificationSettingsContent {
  padding: 20px 0 0 0;
}

.NotificationsRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 10px;
  font-size: 18px;
  color: white;
}

.ToggleWrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hiding the Arrows/Spinners in the input field */

input[type="number"] {
  appearance: none;
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

/* Container for the toggle switches */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch input:checked + .slider {
  background-color: #4caf50;
}

.toggle-switch input:checked + .slider::before {
  transform: translateX(26px);
}

/* Appearance Page Styling */

.AppearanceContent {
  padding: 0 20px 45px 0;
}

.AppearanceLayout {
  height: auto;
  min-height: 550px;
  width: 60vw;
  border: none;
  border: 2px solid #6b8f71;
  border-radius: 30px;
  padding: 20px;
  padding-top: 40px;
  margin: 5px;
}

.DropdownLabel {
  font-size: 18px;
}

.DropDownSwticher {
  position: relative;
  width: 20vw;
  background-color: #2d3c33;
  border: 1px solid #6b8f71;
  border-radius: 8px;
  padding: 10px;
  margin: 10px;
  cursor: pointer;
  user-select: none;
}

.SelectedOption {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  transition: transform 0.3s ease;
}

.DropDownSwticher.open .arrow {
  transform: rotate(180deg);
}

.DropDownSwticher.close .arrow {
  transform: rotate(180deg);
}

.DropDownToggle {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #1e2d24;
  border: 1px solid #6b8f71;
  border-radius: 8px;
  margin-top: 4px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  font-size: 18px;
}

.DropDownOptions {
  padding: 10px 15px;
  transition: background-color 0.2s ease;
}

.DropDownOptions:hover {
  background-color: #4b6b58;
}

.hidden {
  display: none;
}

.AppearanceSpacer {
  margin: 15px;
}

.ResetDefault {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

body.gradient-1 {
  background: linear-gradient(to right, #1e3c72, #2a5298);
}

body.gradient-2 {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
}

body.gradient-3 {
  background: linear-gradient(to right, #2c3e50, #4ca1af);
}

#ColorPicker {
  display: none;
}

.AddGradientBackground {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.GradientModalContent {
  background: #2d3c33;
  border: 2px solid #6b8f71;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(30, 45, 36, 0.4);
  padding: 32px 24px 24px 24px;
  max-width: 400px;
  width: 90vw;
  color: #ededed;
  animation: fadeIn 0.3s;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.GradientModalOptions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.GradientModalOptions select,
.GradientModalOptions input[type="color"] {
  background: #1e2d24;
  color: #ededed;
  border: 1.5px solid #6b8f71;
  border-radius: 8px;
  /* padding: 8px; */
  margin-bottom: 12px;
  font-size: 1rem;
  width: 180px;
  transition: border 0.2s;
}

.GradientModalOptions select:focus,
.GradientModalOptions input[type="color"]:focus {
  border: 2px solid #a3b18a;
  outline: none;
}

.GradientModalColourButton {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.GradientApplyColour {
  height: 45px;
  width: 100px;
  border: none;
  border-radius: 10px;
  background-color: #4f6f56;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.GradientApplyColour:hover {
  background-color: #5e7f64;
  transform: scale(1.05);
}

.GradientApplyColour:active {
  background-color: #4f6f56;
  transform: scale(0.97);
}

.applyCustomGradient {
  background: #6b8f71;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30, 45, 36, 0.15);
  transition: background 0.2s, transform 0.2s;
}
.applyCustomGradient:hover {
  background: #a3b18a;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.GradientClose {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #aaaaaa;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  margin: 0;
}

.GradientClose:hover,
.GradientClose:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.ResetToDefault {
  height: 45px;
  width: 150px;
  border: none;
  border-radius: 10px;
  background-color: #6b8f71;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ResetToDefault:hover {
  background-color: #5e7f64;
  transform: scale(1.05);
}

.ResetToDefault:active {
  background-color: #4f6f56;
  transform: scale(0.97);
}

.ResetButton {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 40px;
}

/* Tasks Page Styling */

.TasksContent {
  padding: 0 20px 10px 0;
}

.TasksLayout {
  position: relative;
  height: auto;
  min-height: 550px;
  width: 58vw;
  border: none;
  border: 2px solid #6b8f71;
  border-radius: 30px;
  padding: 20px;
  padding-top: 40px;
  margin: 5px;
}

.TextBeforeAddingTasks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 450px;
  gap: 16px;
}

.AddPrompt {
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 40px;
}

.AddPromptButton {
  height: 45px;
  width: 100px;
  border: none;
  border-radius: 10px;
  background-color: #6b8f71;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.AddPromptButton:hover {
  background-color: #5e7f64;
  transform: scale(1.05);
}

.AddPromptButton:active {
  background-color: #4f6f56;
  transform: scale(0.97);
}

#ListContainer {
  max-height: 550px;
  overflow-y: auto;
  padding-right: 8px;
}

.AddModal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.ModalContent {
  padding: 32px 24px 24px 24px;
  border: 1px solid #888;
  border-radius: 15px;
  width: 90%;
  max-width: 50vw;
  min-width: 25vw;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}

.ModalOptions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-top: 20px;
}

.InputWithPriority {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 80%;
  max-width: 70vw;
  min-width: 45vw;
  margin: 0 auto;
}

#InputBox {
  padding-left: 8px;
  height: 48px;
  flex: 1;
  border: none;
  border: 2px black solid;
  outline: none;
  border-radius: 15px;
  font-size: 15px;
}

.ModalPriorityDropdown {
  position: relative;
  display: inline-block;
}

.PriorityDropdownToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 48px;
  min-width: 80px;
  padding: 0 16px;
  background-color: #2d3c33;
  border: 2px solid #6b8f71;
  border-radius: 15px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
  font-weight: 600;
  color: #f87171;
}

.PriorityDropdownToggle[data-priority="P0"] {
  background-color: rgba(248, 113, 113, 0.2);
  border-color: #f87171;
  color: #f87171;
}

.PriorityDropdownToggle[data-priority="P1"] {
  background-color: rgba(251, 191, 36, 0.2);
  border-color: #fbbf24;
  color: #fbbf24;
}

.PriorityDropdownToggle[data-priority="P2"] {
  background-color: rgba(156, 163, 175, 0.2);
  border-color: #9ca3af;
  color: #9ca3af;
}

.PriorityDropdownToggle:hover {
  transform: scale(1.02);
}

.PriorityDropdownToggle.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.PriorityArrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.PriorityDropdownToggle.open .PriorityArrow {
  transform: rotate(180deg);
}

.PriorityDropdownMenu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: #2d3c33;
  border-top: none;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 10;
  overflow: hidden;
}

.PriorityDropdownMenu.show {
  display: block;
  animation: fadeIn 0.2s ease;
}

.PriorityDropdownMenu .PriorityOption {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
  border: none;
  border-radius: 0;
  min-width: auto;
  width: 100%;
}

.PriorityDropdownMenu .PriorityOption:hover {
  transform: none;
  box-shadow: none;
}

.PriorityDropdownMenu .PriorityOption:last-child {
  border-radius: 0 0 13px 13px;
}

.ModalAddTaskButton {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.ClearAllPopUp {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 1300;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.ClearAllPopUp.show {
  display: flex;
  animation: fadeIn 0.3s;
}

.ClearAllPopUpContent {
  background-color: #2d3c33;
  border: 2px solid #6b8f71;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(30, 45, 36, 0.4);
  padding: 32px 24px 24px 24px;
  max-width: 600px;
  width: 90vw;
  color: #ededed;
  animation: fadeIn 0.3s;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  text-align: center;
}

.ClearAllPopUp h1 {
  font-size: 25px;
  margin-bottom: 16px;
  color: #ededed;
  font-weight: 600;
  text-align: center;
}

.ClearAllPopUp p {
  font-size: 17px;
  margin-bottom: 24px;
  color: #ededed;
  line-height: 1.5;
  font-weight: 500;
}

.ClearAllPopUpButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.ClearAllPopUp .ConfirmButton,
.ClearAllPopUp .CancelButton {
  height: 45px;
  width: 100px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ClearAllPopUp .ConfirmButton {
  background-color: #dc3545;
  color: #ffffff;
}

.ClearAllPopUp .ConfirmButton:hover {
  background-color: #c82333;
  transform: scale(1.05);
}

.ClearAllPopUp .ConfirmButton:active {
  background-color: #bd2130;
  transform: scale(0.97);
}

.ClearAllPopUp .CancelButton {
  background-color: #6b8f71;
  color: #ffffff;
}

.ClearAllPopUp .CancelButton:hover {
  background-color: #5e7f64;
  transform: scale(1.05);
}

.ClearAllPopUp .CancelButton:active {
  background-color: #4f6f56;
  transform: scale(0.97);
}

/* Light mode styles */
html.light-mode .ClearAllPopUpContent {
  background-color: #eeeeee;
  border-color: #6b8f71;
}

html.light-mode .ClearAllPopUp h1 {
  color: #333333;
}

html.light-mode .ClearAllPopUp p {
  color: #333333;
}

.AddTask {
  height: 45px;
  width: 100px;
  border: none;
  border-radius: 10px;
  background-color: #4f6f56;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.AddTask:hover {
  background-color: #5e7f64;
  transform: scale(1.05);
}

.AddTask:active {
  background-color: #4f6f56;
  transform: scale(0.97);
}

.close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #aaaaaa;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  margin: 0;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.ModalHeading {
  text-align: center;
  font-size: 25px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin: 0 0 20px 0;
  padding: 15px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
  overflow-wrap: break-word;
  list-style-type: none;
}

.MarkNotDone {
  display: none;
}

.Clear {
  display: flex;
  justify-content: center;
}

.ClearButton {
  height: 45px;
  width: 100px;
  border: none;
  border-radius: 10px;
  background-color: #4f6f56;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  display: none;
}

.ClearButton:hover {
  background-color: #5e7f64;
  transform: scale(1.05);
}

.ContextMenu {
  position: absolute;
  width: 150px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
  display: none; /* Hidden by default */
  z-index: 1;
}

/* Style each menu option */
.ContextMenu div {
  padding: 10px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
}

/* Hover effect for options */
.ContextMenu div:hover {
  background-color: #f0f0f0;
  color: #007bff;
}

.ContextMenu .RemoveOption:hover {
  background-color: red;
  color: white;
}

/* Add a smooth transition */
.ContextMenu div {
  transition: background-color 0.3s, color 0.3s;
}

.ContextMenu div:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.ContextMenu div:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.EditInput {
  text-align: center;
  height: 48px;
  width: 80%;
  max-width: 70vw;
  min-width: 45vw;
  border: none;
  border: 2px black solid;
  outline: none;
  border-radius: 15px;
  font-size: 15px;
  margin: 0 auto;
}

.SaveButton {
  height: 48px;
  width: 100px;
  border: none;
  border-radius: 10px;
  background-color: #4f6f56;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.SaveButton:hover {
  background-color: #5e7f64;
  transform: scale(1.05);
}

.SaveButton:active {
  background-color: #4f6f56;
  transform: scale(0.97);
}

.AddTasksButton {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  top: -56px;
  right: 14px;
}

.AddTasksButton i {
  transition: transform 0.2s ease;
}

.AddTasksButton:hover i {
  transform: rotate(90deg);
}

.KebabMenu {
  display: none;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
  padding: 0 10px 0 10px;
}

.TaskText {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 25px;
}

li:hover .KebabMenu {
  display: inline-block;
}

.prioritybox {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border: 2px solid transparent;
  border-radius: 6px;
  background-color: rgba(248, 113, 113, 0.2);
  color: #f87171;
  transition: all 0.2s ease-in-out;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.prioritybox:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.prioritybox .chevron {
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.prioritybox:hover .chevron {
  opacity: 1;
  transform: translateY(0.5px);
}

/* Priority box color variations based on priority class */
.prioritybox.PriorityZero {
  background-color: rgba(248, 113, 113, 0.2);
  color: #f87171;
  border-color: #f87171;
}

.prioritybox.PriorityOne {
  background-color: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border-color: #fbbf24;
}

.prioritybox.PriorityTwo {
  background-color: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border-color: #9ca3af;
}

.PriorityContextMenu {
  position: absolute;
  width: 80px;
  background-color: #2d3c33;
  border: 1px solid #6b8f71;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  display: none;
  z-index: 2;
  overflow: hidden;
}

/* Style each menu option */
.PriorityContextMenu div {
  padding: 12px 16px;
  cursor: pointer;
  color: #ededed;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Hover effect for options */
.PriorityContextMenu div:hover {
  background-color: rgba(107, 143, 113, 0.3);
  transform: scale(1.02);
}

.PriorityContextMenu div:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.PriorityContextMenu div:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.PriorityContextMenu .PriorityZero {
  background-color: rgba(248, 113, 113, 0.2);
  color: #f87171;
}

.PriorityContextMenu .PriorityZero:hover {
  background-color: rgba(248, 113, 113, 0.3);
}

.PriorityContextMenu .PriorityOne {
  background-color: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.PriorityContextMenu .PriorityOne:hover {
  background-color: rgba(251, 191, 36, 0.3);
}

.PriorityContextMenu .PriorityTwo {
  background-color: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

.PriorityContextMenu .PriorityTwo:hover {
  background-color: rgba(156, 163, 175, 0.3);
}

/* Light mode styles for PriorityContextMenu */
html.light-mode .PriorityContextMenu {
  background-color: #eeeeee;
  border-color: #6b8f71;
}

html.light-mode .PriorityContextMenu div {
  color: #333333;
}

html.light-mode .PriorityContextMenu div:hover {
  background-color: rgba(107, 143, 113, 0.2);
}

.PriorityOption {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
  min-width: 60px;
  text-align: center;
  user-select: none;
}

.PriorityOption:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.PriorityOption:active {
  transform: scale(0.95);
}

.PriorityZero {
  background-color: rgba(248, 113, 113, 0.2);
  color: #f87171;
  border-color: #f87171;
}

.PriorityZero:hover {
  background-color: rgba(248, 113, 113, 0.3);
}

.PriorityZero.selected {
  background-color: rgba(248, 113, 113, 0.4);
  border-color: #f87171;
}

.PriorityOne {
  background-color: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border-color: #fbbf24;
}

.PriorityOne:hover {
  background-color: rgba(251, 191, 36, 0.3);
}

.PriorityOne.selected {
  background-color: rgba(251, 191, 36, 0.4);
  border-color: #fbbf24;
}

.PriorityTwo {
  background-color: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border-color: #9ca3af;
}

.PriorityTwo:hover {
  background-color: rgba(156, 163, 175, 0.3);
}

.PriorityTwo.selected {
  background-color: rgba(156, 163, 175, 0.4);
  border-color: #9ca3af;
}

.WhatsNewModal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 1400;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.WhatsNewModal.show {
  display: flex;
  animation: fadeIn 0.3s;
}

.WhatsNewModalContent {
  background-color: #2d3c33;
  border: 2px solid #6b8f71;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(30, 45, 36, 0.4);
  padding: 36px 32px 28px 32px;
  max-width: 520px;
  width: 90vw;
  color: #ededed;
  animation: fadeIn 0.3s;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  text-align: left;
}

.WhatsNewModalClose {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(237, 237, 237, 0.8);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s, background-color 0.2s;
}

.WhatsNewModalClose:hover {
  color: #ededed;
  background-color: rgba(107, 143, 113, 0.25);
}

.WhatsNewModalClose:active {
  background-color: rgba(107, 143, 113, 0.4);
}

.WhatsNewModalTitle {
  font-size: 26px;
  margin-bottom: 10px;
  color: #ededed;
  font-weight: 600;
  text-align: center;
}

/* Paginated pages */
.WhatsNewModalPages {
  position: relative;
  min-height: 200px;
  margin-bottom: 20px;
}

.WhatsNewModalPage {
  display: none;
  animation: fadeIn 0.25s ease;
}

.WhatsNewModalPage.active {
  display: block;
}

.WhatsNewModalPageTitle {
  font-size: 18px;
  font-weight: 600;
  color: #e8f0ea;
  margin: 0 0 12px 0;
  text-align: center;
}

.WhatsNewModalPageBody {
  font-size: 15px;
  line-height: 1.6;
  color: #ededed;
  margin: 0 0 16px 0;
  text-align: center;
}

.WhatsNewModalPageSub {
  font-size: 14px;
  color: rgba(237, 237, 237, 0.85);
  margin: 0;
  text-align: center;
}

.WhatsNewModalPriorityDemo {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 12px 0;
}

.WhatsNewPriorityBadge {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}

.WhatsNewKebab {
  font-family: ui-monospace, monospace;
  font-size: 1.1em;
  opacity: 0.9;
}

/* Pagination dots */
.WhatsNewModalPagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.WhatsNewModalDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: rgba(237, 237, 237, 0.35);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.WhatsNewModalDot:hover {
  background-color: rgba(237, 237, 237, 0.6);
}

.WhatsNewModalDot.active {
  background-color: #6b8f71;
  transform: scale(1.2);
}

/* Action buttons: Prev, Next, Got it */
.WhatsNewModalActions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.WhatsNewModalPrev {
  display: none;
  padding: 10px 18px;
  border: 1px solid rgba(107, 143, 113, 0.6);
  border-radius: 10px;
  background: transparent;
  color: #6b8f71;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.WhatsNewModalPrev.visible {
  display: inline-block;
}

.WhatsNewModalPrev:hover {
  background-color: rgba(107, 143, 113, 0.15);
  color: #5e7f64;
}

.WhatsNewModalNext {
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  background-color: #6b8f71;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.WhatsNewModalNext:hover {
  background-color: #5e7f64;
  transform: scale(1.03);
}

.WhatsNewModalDone {
  display: none;
}

.WhatsNewModalDone.visible {
  display: inline-block;
}

.WhatsNewModalNext.hidden {
  display: none;
}

.OkayButton {
  height: 45px;
  min-width: 100px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  background-color: #6b8f71;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.OkayButton:hover {
  background-color: #5e7f64;
  transform: scale(1.05);
}

.OkayButton:active {
  background-color: #4f6f56;
  transform: scale(0.97);
}

/* Light mode styles for WhatsNewModal */
html.light-mode .WhatsNewModalContent {
  background-color: #f5f7f5;
  border-color: #6b8f71;
}

html.light-mode .WhatsNewModalClose {
  color: rgba(0, 0, 0, 0.5);
}

html.light-mode .WhatsNewModalClose:hover {
  color: #1a1f1c;
  background-color: rgba(107, 143, 113, 0.2);
}

html.light-mode .WhatsNewModalTitle {
  color: #1a1f1c;
}

html.light-mode .WhatsNewModalPageTitle {
  color: #1a1f1c;
}

html.light-mode .WhatsNewModalPageBody,
html.light-mode .WhatsNewModalPageSub {
  color: #333333;
}

html.light-mode .WhatsNewModalDot {
  background-color: rgba(0, 0, 0, 0.2);
}

html.light-mode .WhatsNewModalDot:hover {
  background-color: rgba(0, 0, 0, 0.35);
}

html.light-mode .WhatsNewModalDot.active {
  background-color: #6b8f71;
}

html.light-mode .WhatsNewModalPrev {
  color: #4a6b4f;
  border-color: rgba(107, 143, 113, 0.6);
}

html.light-mode .WhatsNewModalPrev:hover {
  background-color: rgba(107, 143, 113, 0.12);
  color: #3d5a42;
}

/* Signup Page Styling */

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

.SignupCard {
  background-color: #2d3c33;
  border: 2px solid #6b8f71;
  border-radius: 20px;
  padding: 40px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(30, 45, 36, 0.4);
  transition: all 0.3s ease;
}

.SignupCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(30, 45, 36, 0.6);
}

.SignupHeader {
  text-align: center;
  margin-bottom: 30px;
}

.SignupLogo {
  height: 80px;
  width: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.SignupTitle {
  font-size: 28px;
  font-weight: 600;
  color: #ededed;
  margin-bottom: 10px;
}

.SignupSubtitle {
  font-size: 16px;
  color: #a3b18a;
  margin-bottom: 0;
}

.SignupContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.GoogleSignInButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 50px;
  width: 100%;
  background-color: #4f6f56;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(79, 111, 86, 0.3);
}

.GoogleSignInButton:hover {
  background-color: #5e7f64;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 111, 86, 0.4);
}

.GoogleSignInButton:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(79, 111, 86, 0.3);
}

.GoogleSignInButton i {
  font-size: 18px;
}

.Divider {
  position: relative;
  text-align: center;
  margin: 10px 0;
}

.Divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #6b8f71;
}

.Divider span {
  background-color: #2d3c33;
  padding: 0 15px;
  color: #a3b18a;
  font-size: 14px;
}

.GuestContinueButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 50px;
  width: 100%;
  background-color: transparent;
  color: #a3b18a;
  border: 2px solid #6b8f71;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.GuestContinueButton:hover {
  background-color: #6b8f71;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 143, 113, 0.3);
}

.GuestContinueButton:active {
  transform: translateY(0);
}

.GuestContinueButton i {
  font-size: 16px;
}

.SignupFeatures {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #6b8f71;
}

.Feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.Feature i {
  font-size: 20px;
  color: #a3b18a;
}

.Feature span {
  font-size: 12px;
  color: #a3b18a;
  font-weight: 500;
}

.ThemeToggle {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

/* Light mode styles for signup page */
html.light-mode .SignupCard {
  background-color: #edffe9;
  border-color: #6b8f71;
}

html.light-mode .SignupTitle {
  color: #333333;
}

html.light-mode .SignupSubtitle {
  color: #4b6b58;
}

html.light-mode .Divider::before {
  background-color: #6b8f71;
}

html.light-mode .Divider span {
  background-color: #edffe9;
  color: #4b6b58;
}

html.light-mode .GuestContinueButton {
  color: #4b6b58;
  border-color: #6b8f71;
}

html.light-mode .GuestContinueButton:hover {
  background-color: #6b8f71;
  color: #ffffff;
}

html.light-mode .SignupFeatures {
  border-top-color: #6b8f71;
}

html.light-mode .Feature i,
html.light-mode .Feature span {
  color: #4b6b58;
}

/* Main Signup Page Styling */

.SignupBenefits {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  padding: 20px 0;
  border-top: 1px solid #6b8f71;
  border-bottom: 1px solid #6b8f71;
}

.Benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.Benefit i {
  font-size: 20px;
  color: #a3b18a;
}

.Benefit span {
  font-size: 12px;
  color: #a3b18a;
  font-weight: 500;
}

.SignupFooter {
  margin-top: 20px;
  text-align: center;
}

.SignupFooterText {
  font-size: 14px;
  color: #a3b18a;
  margin: 0;
}

.SignupFooterLink {
  color: #6b8f71;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.SignupFooterLink:hover {
  color: #a3b18a;
  text-decoration: underline;
}

/* Light mode styles for main signup page */
html.light-mode .SignupBenefits {
  border-top-color: #6b8f71;
  border-bottom-color: #6b8f71;
}

html.light-mode .Benefit i,
html.light-mode .Benefit span {
  color: #4b6b58;
}

html.light-mode .SignupFooterText {
  color: #4b6b58;
}

html.light-mode .SignupFooterLink {
  color: #6b8f71;
}

html.light-mode .SignupFooterLink:hover {
  color: #4b6b58;
}

/* Responsive design for signup page */
@media only screen and (max-width: 600px) {
  .SignupContainer {
    padding: 15px;
  }

  .SignupCard {
    padding: 30px 25px;
  }

  .SignupTitle {
    font-size: 24px;
  }

  .SignupSubtitle {
    font-size: 14px;
  }

  .SignupFeatures {
    flex-direction: column;
    gap: 15px;
  }

  .Feature {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .SignupBenefits {
    flex-direction: column;
    gap: 15px;
  }

  .Benefit {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .ThemeToggle {
    top: 15px;
    right: 15px;
  }
}

@media only screen and (max-width: 400px) {
  .SignupCard {
    padding: 25px 20px;
  }

  .SignupTitle {
    font-size: 22px;
  }

  .GoogleSignInButton,
  .GuestContinueButton {
    height: 45px;
    font-size: 15px;
  }
}

/* Responsive stuff idk */

@media only screen and (max-width: 1080px) {
  .TimerSettingsLayot {
    height: auto;
    min-height: 300px;
    width: 85vw;
  }
  .NotificationsSettingsLayout {
    height: auto;
    min-height: 300px;
    width: 85vw;
  }

  .SettingsContent {
    padding: 0 0 250px 60px;
  }

  .TimerContent {
    margin: 0 0 210px 95px;
  }

  .TasksContent {
    padding: 0 0 10px 85px;
  }

  .TasksLayout {
    height: auto;
    min-height: 850px;
    width: 78vw;
    border: none;
    border: 2px solid #6b8f71;
    border-radius: 30px;
    padding: 20px;
    padding-top: 40px;
    margin: 5px;
  }

  .AddTasksButton {
    position: fixed;
    top: auto;
    bottom: 10px;
    right: 10px;
  }

  .ClearAllPopUp p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .KebabMenu {
    display: block;
  }
}

@media only screen and (max-width: 900px) {
  .SideBar {
    width: 99vw;
    height: 100vh;
    max-width: none;
    min-width: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-radius: 0 10px 10px 0;
    margin: 0;
  }

  .bars {
    position: fixed;
    top: 20px;
    left: 10px;
    z-index: 1100;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .bars.shift-left {
    margin-left: 0;
  }

  .MainPageContent.shifted {
    margin-left: 0;
  }

  .Navigation {
    width: 90vw;
  }

  .ComingSoon {
    left: 9vw;
  }

  .TimerContent {
    margin-left: 42px;
  }

  .DropDownSwticher {
    width: 65vw;
  }
}

@media only screen and (max-width: 480px) {
  .TimerSettingsLayot {
    height: auto;
    min-height: 300px;
    width: 85vw;
  }
  .NotificationsSettingsLayout {
    height: auto;
    min-height: 200px;
    width: 85vw;
  }

  .SettingsContent {
    padding: 50px 10px 40px 25px;
  }

  .AppearanceContent {
    padding: 50px 10px 40px 25px;
  }

  .AppearanceLayout {
    height: auto;
    min-height: 200px;
    width: 85vw;
  }

  .TasksContent h1 {
    text-align: center;
    align-items: center;
  }

  .TasksLayout {
    height: auto;
    min-height: 300px;
    width: 85vw;
    margin-left: 30px;
  }

  .AddTasksButton {
    position: fixed;
    top: auto;
    bottom: 10px;
    right: 10px;
  }

  .ModalContent {
    max-width: 100vw;
    min-width: 75vw;
  }

  #ListContainer {
    max-height: 450px;
  }

  .ModeButtons button {
    height: 40px;
    width: 90px;
    border: none;
    font-size: 14px;
  }

  .TasksContent {
    padding: 0 10px 10px 0;
  }
}
