﻿:root {
  --main-color: #3eb489;
  --negative-color: #c14b76;
  --light-grey: #E8E8E8;
  --text-grey: #AAAAAA;
  --highlight: #336699;
  --event-color: #2980B9;
  --transition-duration: 0.4s;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  touch-action: pan-y;
}

body {
  font-family: 'Kanit', sans-serif;
  background: lightgray;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

input, textarea, select {
  font-size: 16px;
}

.container {
  min-height: 550px;
  background-color: #c9c9c9;
  display: flex;
  align-items: stretch;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.calendar-left {
  width: 300px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    to bottom,
    var(--main-color) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  color: white;
  padding: 25px;
  border-radius: 20px 0 0 20px;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-duration);
}

.calendar-left .num-date,
.calendar-left .day,
.calendar-left p {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.calendar-left::before,
.calendar-left:hover::before {
  display: none;
}

.create-event-btn .add-event {
  font-size: 12px;
  font-weight: bold;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  cursor: pointer;
  transition: all 0.3s ease;
}

.create-event-btn .add-event:hover {
  background-color: white;
  color: var(--main-color);
}

.add-event {
  font-size: 16px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  cursor: pointer;
}

.add-event:hover {
  color: var(--highlight);
  border-color: var(--highlight);
}


.current-events {
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  width: 100%;
  border-radius: 10px;
}

.current-events.hidden {
  opacity: 0;
  transform: translateY(10px);
  display: none;
}

.calendar-right {
  width: 250px;
  background: #f1f1f1;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.task-list-container {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 8px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.task-header {
  background: var(--main-color);
  color: white;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.task-list {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--main-color) #f1f1f1;
  padding: 5px;
}

.task-list::-webkit-scrollbar {
  width: 6px;
}

.task-list::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.02);
  border-radius: 3px;
}

.task-list::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 3px;
  opacity: 0.5;
}

.task-list::-webkit-scrollbar-thumb:hover {
  background: var(--highlight);
  opacity: 0.8;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 5px;
  margin-bottom: 5px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-drag: element;
  touch-action: none;
}

.task-item.dragging {
  opacity: 0.5;
  transform: scale(0.95);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.task-item.drop-target {
  background-color: rgba(62, 180, 137, 0.1);
  border: 2px dashed var(--main-color);
}

.task-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
  transform: translateX(-100%);
  transition: transform 0.9s ease;
}

.task-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: var(--main-color);
  color: white;
}

.task-item:hover::before {
  transform: translateX(100%);
}

.task-item:hover .task-time,
.task-item:hover .task-desc {
  color: white !important;
}

.task-item:hover .task-status {
  background-color: rgba(255,255,255,0.3) !important;
  color: white !important;
}

.task-time {
  font-weight: 600;
  min-width: 40px;
  text-align: center;
  font-size: 12px;
  color: var(--main-color);
  background: rgba(0,0,0,0.03);
  padding: 4px 6px;
  border-radius: 4px;
  margin-top: 2px;
}

.task-details {
  flex-grow: 1;
  overflow: hidden;
}

.selected-task {
  background-color: var(--main-color) !important;
  color: white !important;
  padding: 5px;
  border-radius: 10px;
  border-left: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

.selected-task .task-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px;
}

.task-label {
  font-weight: bold;
  color: white;
  min-width: 80px;
  margin-right: 10px;
  text-align: right;
}

.task-value {
  color: rgba(255, 255, 255, 0.9) !important;
  word-break: break-word;
  display: block;
}

.selected-task:hover {
  opacity: 0.9;
}

.task-status-value {
  background-color: transparent !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-weight: normal !important;
}

.current-events p {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 15px;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
}

.selected-task .store-id {
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 5px;
}

.task-desc {
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}

.task-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.no-task {
  color: white;
  background: rgba(0, 0, 0, 0.1);
  font-style: italic;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
}

.no-tasks {
  text-align: center;
  color: #999;
  padding: 20px;
  font-size: 13px;
  font-style: italic;
  background: rgba(0,0,0,0.02);
  border-radius: 8px;
  margin: 10px;
}

.hamburger {
  cursor: pointer;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  border-radius: 2px;
}

.num-date {
  font-size: 90px;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.day {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.posts {
  text-decoration: underline dotted;
  cursor: pointer;
}

.posts:hover {
  color: var(--highlight);
}

.calendar-base {
  width: 600px;
  background-color: white;
  border-radius: 0 20px 20px 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.year-nav {
  display: flex;
  align-items: center;
}

.year {
  font-size: 24px;
  color: var(--main-color);
  margin: 0 5px;
  border: none;
  background: transparent;
  width: 60px;
  text-align: center;
  font-family: 'Kanit', sans-serif;
}

.year:focus {
  outline: none;
  color: var(--main-color);
}

.triangle {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  cursor: pointer;
}

.left {
  border-right: 10px solid var(--light-grey);
}

.right {
  border-left: 10px solid var(--light-grey);
}

.triangle:hover {
  border-color: transparent var(--main-color) transparent;
}

.months {
  margin: 20px 0;
  text-align: center;
  color: var(--text-grey);
}

.months span {
  margin: 0 5px;
  cursor: pointer;
}

.months span:hover,
.months span.active-month {
  color: #336699;
  font-weight: bold;
  border-bottom: 2px solid var(--highlight);
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: var(--text-grey);
  font-weight: bold;
  cursor: default;
}

.dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-top: 10px;
  flex: 1;
  min-height: 0;
}

.date {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2px auto;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.date:not(.grey) {
  opacity: 1 !important;
  filter: none !important;
}

.date.drop-target {
  background-color: rgba(46, 204, 113, 0.3) !important;
  border: none !important;
  transform: scale(1.05);
}

.date.invalid-drop {
  background-color: rgba(231, 76, 60, 0.3) !important;
  border: 2px dashed #e74c3c !important;
  cursor: pointer;
}

.date.invalid-drop.valid-drop {
  background-color: rgba(231, 76, 60, 0.6) !important;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.date::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.date:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.7;
}

.date:hover {
  color: white;
  font-weight: bold;
}

.date.today {
  background-color: var(--main-color);
  color: white;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(0,0,0,0.6);
  position: relative;
  opacity: 1 !important;
  filter: none !important;
}

/* تحسينات أنيميشن الوميض */
@keyframes singleFlash {
  0%, 100% {
    background-color: rgba(62, 180, 137, 0.1);
  }
  50% {
    background-color: rgba(62, 180, 137, 0.4);
  }
}

.date.flashing {
  animation: singleFlash 0.5s ease-out;
  border: 0px solid var(--main-color);
  z-index: 10;
  position: relative;
  transform: scale(1.05);
}

@keyframes infiniteDragFlash {
  0%, 100% {
    background-color: rgba(62, 180, 137, 0.1);
  }
  50% {
    background-color: rgba(62, 180, 137, 0.4);
  }
}

.date.infinite-drag-flashing {
  animation: infiniteDragFlash 1s infinite ease-in-out;
  transform: scale(1);
  z-index: 10;
  position: relative;
  border: none !important;
}

/* Animations for flashing dates */
@keyframes dateFlash {
  0% { 
    background-color: rgba(62, 180, 137, 0.2);
    box-shadow: 0 0 0 0 rgba(62, 180, 137, 0.7);
  }
  50% { 
    background-color: rgba(62, 180, 137, 0.5);
    box-shadow: 0 0 10px 2px rgba(62, 180, 137, 0.9);
  }
  100% { 
    background-color: rgba(62, 180, 137, 0.2);
    box-shadow: 0 0 0 0 rgba(62, 180, 137, 0.7);
  }
}

.date.available-drop {
  background-color: rgba(62, 180, 137, 0.3) !important;
  border: none !important;
  cursor: grab;
}

.date.invalid-drop {
  background-color: rgba(231, 76, 60, 0.3) !important;
  border: none !important;
  cursor: not-allowed;
}

.date.valid-drop {
  background-color: rgba(62, 180, 137, 0.6) !important;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(62, 180, 137, 0.5);
}

.date.today:hover {
  background-color: var(--main-color);
}

.date.grey {
  color: #CCC;
  transition: all 0.3s ease;
}

.date.grey:hover {
  color: var(--main-color);
  background-color: rgba(0,0,0,0.05);
}

.menu-list {
  list-style: none;
  margin-top: 10px;
  padding-left: 5;
  position: relative;
  z-index: 10;
}

.menu-list li {
  padding: 10px 5px;
  margin: 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.8s ease;
}

.menu-list li:hover {
  background-color: white;
  color: var(--main-color);
}

.hidden {
  display: none;
}

.go-to-today {
  text-align: center;
  margin-top: 20px;
}


.calendar-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: auto;
  padding: 10px 0;
  flex-wrap: wrap;
}

.calendar-actions button {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Kanit', sans-serif;
  transition: all 0.1s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transform: translateY(0);
}

.calendar-actions button span {
  position: relative;
  z-index: 2;
}

.calendar-actions button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.calendar-actions button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.calendar-actions button:hover::before {
  left: 125%;
}

.calendar-actions button:disabled {
  background-color: #cccccc !important;
  color: #666666 !important;
  border-color: #cccccc !important;
  pointer-events: none;
  animation: none !important;
}

.calendar-actions button:disabled:hover {
  background-color: #cccccc !important;
  transform: none !important;
}

.calendar-actions button:disabled::before {
  opacity: 0 !important;
}

@keyframes pulse {
  0% { background-color: var(--main-color); }
  50% { background-color: var(--negative-color); }
  100% { background-color: var(--main-color); }
}

.date.has-tasks {
  position: relative;
}

.date.has-tasks::after {
  content: '';
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.date.today.has-tasks::after {
  background-color: white !important;
  opacity: 0.8;
}

.date.grey.has-tasks::after {
  background-color: var(--text-grey);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-width: 300px;
  width: 90%;
}

.modal-content p {
  margin-bottom: 20px;
  font-size: 18px;
}

.modal-content button {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Kanit', sans-serif;
  transition: all 0.3s;
}

.modal-content button:hover {
  background-color: var(--highlight);
}

#csvFileInput {
  display: none;
}

.task-item.selected-task-item {
  background-color: var(--main-color) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-left-color: white;
}

.task-item.selected-task-item .task-time,
.task-item.selected-task-item .task-desc {
  color: white !important;
}

.task-item.selected-task-item .task-status {
  background-color: rgba(255,255,255,0.2) !important;
  color: white !important;
  box-shadow: none;
}

.task-item.selected-task-item::before {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%);
}

.date:focus {
  outline: 2px solid var(--highlight);
  outline-offset: 2px;
}

.task-item:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(62, 180, 137, 0.3);
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 100%;
    min-height: auto;
  }
  
  .calendar-left, .calendar-base, .calendar-right {
    width: 100%;
    border-radius: 0;
  }
  
  .calendar-left {
    order: 1;
    padding: 15px;
    border-radius: 0;
  }
  
  .calendar-base {
    order: 2;
    padding: 15px;
  }
  
  .calendar-right {
    order: 3;
    height: auto;
    max-height: 300px;
  }
  
  .dates {
    grid-template-columns: repeat(7, minmax(30px, 1fr));
  }
  
  .date {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .months span {
    margin: 0 2px;
    font-size: 12px;
  }
  
  .year {
    font-size: 18px;
  }
  
  .calendar-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .calendar-actions button {
    padding: 8px 12px;
    margin: 5px;
    font-size: 12px;
  }
  
  .task-item {
    padding: 8px;
    font-size: 12px;
  }
  
  .task-time {
    font-size: 11px;
    min-width: 35px;
  }
  
  .num-date {
    font-size: 60px;
  }
  
  .day {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .months span {
    display: none;
  }
  
  .months span:nth-child(-n+3),
  .months span:nth-last-child(-n+3) {
    display: inline;
  }
  
  .date {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
  .days div {
    font-size: 12px;
  }
}

.active-touch {
  transform: scale(0.95);
  opacity: 0.8;
}

button, .date, .task-item {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}


.date-tooltip {
  position: absolute;
  background-color: white;
  border: 1px solid var(--main-color);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  max-width: 200px;
  font-size: 13px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: left;
  direction: ltr;
}

.date-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 15%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: var(--main-color) transparent transparent transparent;
}

.date-tooltip.active {
  opacity: 1;
}

.date-tooltip h4 {
  margin: 0 0 5px 0;
  color: var(--main-color);
  font-size: 14px;
  padding-right: 4px;
}

.date-tooltip ul {
  margin: 0;
  padding-right: 4px;
  padding-left: 0;
  list-style-position: inside;
}

.date-tooltip li {
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 4px;
  padding-left: 1px;
}

#hidden-menu {
  position: absolute;
  top: 60px;
  left: 20px;
  right: 20px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
}

#hidden-menu .task-list-container {
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 0px solid rgba(0, 0, 0, 0.1);
}

#hidden-menu .menu-list {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#hidden-menu .menu-list li {
  background-color: white;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
  border-left: 4px solid transparent;
  margin: 5px;
  border-radius: 8px;
}

#hidden-menu .menu-list li:hover {
  background-color: var(--main-color);
  color: white;
  transform: translateX(5px);
}

#hidden-menu .menu-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
  transform: translateX(100%);
  transition: transform 0.9s ease;
}

#hidden-menu .menu-list li:hover::before {
  transform: translateX(-100%);
}

#hidden-menu .menu-list li:active {
  transform: scale(0.98);
}

.event-form-overlay, .timespan-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.event-form, .timespan-form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.save-btn, .cancel-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.save-btn {
  background-color: var(--main-color);
  color: white;
}

.cancel-btn {
  background-color: #e0e0e0;
}

.edit-icon {
  cursor: pointer;
  margin-left: 10px;
  font-size: 16px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.edit-icon:hover {
  opacity: 1;
  color: var(--main-color);
}

.edit-task-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.edit-icon {
  margin-right: 5px;
  font-size: 14px;
}

.circle-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: white;
  color: var(--main-color);
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.3s;
  border: 2px solid var(--main-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.circle-add-btn:hover {
  background-color: var(--main-color);
  color: white;
  transform: scale(1.1);
}

.timespan-row {
  display: flex;
  align-items: center;
}

.timespan-row .task-value {
  flex-grow: 1;
}