.sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.intro {
  width: 119px;
  margin: 17px 0 0 1px;
  font-size: 13.5px;
  line-height: 1.03;
  letter-spacing: -0.15px;
}

.sidebarBottom {
  margin-top: 95px;
  padding-bottom: 0;
}
.legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 20px 1px;
}

.legendItem {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  line-height: 1;
}

.square {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border: 1px solid rgba(0, 1, 45, 0.55);
}

.pink {
  background: var(--pink);
}

.yellow {
  background: var(--yellow);
}

.teal {
  background: var(--teal);
}

.appointment {
  width: 112px;
  height: 279px;
  border-radius: 19px;
  background: var(--navy);
  color: var(--orange);
  padding: 25px 18px 17px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: transform 180ms ease;
}

.appointment:hover {
  transform: translateY(-2px);
}

.appointmentTitle {
  font-size: 14.5px;
  line-height: 1.08;
}

.appointmentNote {
  margin-top: 11px;
  font-size: 10px;
  line-height: 1.08;
}

.appointmentArrow {
  width: 81px;
  height: 30px;
  margin-top: auto;
  border-radius: 20px;
  background: var(--orange);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

#clock {
  width: 100%;
  margin-top: 14px;
  text-align: center;
  color: var(--orange);
  font-family: var(--inter);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.sidebarMarks {
  position: relative;
  height: 51px;
  margin-top: 11px;
}

.markLink {
  position: absolute;
  display: block;
  bottom: 0;
  cursor: pointer;
  z-index: 2;
}

.markImage {
  position: absolute;
  bottom: 0;
  display: block;
}

.markLink.pencilLinkOne {
  left: 0px;
  width: 42px;
  height: 42px;
  top: 3px;
}
.markImage.pencilOne {
  left: 0px;
  width: 42px;
  height: auto;
  top: 3px;
}
.markLink.pencilLinkOne:hover .pencilOne {
  transform: translateY(-2px);
}

.markLink.pencilLinkTwo {
  left: 28px;
  width: 42px;
  height: 42px;
  top: 3px;
}
.markImage.pencilTwo {
  left: 3px;
  width: 42px;
  height: auto;
  top: 3px;
}
.markLink.pencilLinkTwo:hover .pencilTwo {
  transform: translateY(-2px);
}

.markLink.sunLink {
  left: 63px;
  width: 56px;
  height: 51px;
}
.markImage.sunMarkImage {
  left: 2px;
  width: 56px;
  height: auto;
}
.markLink.sunLink:hover .sunMarkImage {
  transform: translateY(-2px);
}

.pencil {
  position: absolute;
  bottom: 0;
  width: 9px;
  height: 34px;
  border: 1px solid var(--navy);
  transform: rotate(-6deg);
  border-radius: 3px 3px 1px 1px;
}

.pencil::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -6px;
  width: 9px;
  height: 8px;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.pencilOne {
  left: 18px;
}

.pencilTwo {
  left: 45px;
}

.sunMark {
  position: absolute;
  left: 73px;
  bottom: 2px;
  font-size: 26px;
  color: var(--yellow);
}
/* =========================
   DRAGGABLE STICKERS
========================= */

.stickerBoard {
  position: relative;
  width: 100%;
  height: 210px;
  margin-top: 15px;
  overflow: visible;
}
.stickMe {
  font-family: var(--inter);
  font-size: 9px;
  color: var(--navy);
  margin: -8px 0 0 0;
  text-align: center;
}

/* Todos los stickers */


.draggableSticker {
  position: absolute;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  z-index: 50;
}

/* Efecto hover */

.draggableSticker:hover {
  filter: drop-shadow(0 5px 8px rgba(0, 1, 45, 0.2));
}

/* Mientras lo estás arrastrando */

.draggableSticker.draggingSticker {
  cursor: grabbing;

  filter: drop-shadow(0 10px 15px rgba(0, 1, 45, 0.3));

  z-index: 100;
}
/* POSICIÓN INICIAL DE CADA STICKER */

.stickerAnaChill {
  left: 5px;
  top: 27px;
  width: 85px;
}

.stickerAnaSing {
  left: 18px;
  top: 45px;
  width: 89px;
}

.stickerSoniaChill {
  left: 5px;
  top: 105px;
  width: 77px;
}

.stickerSoniaArt {
  left: 18px;
  top: 105px;
  width: 89px;
}
.calendarLegend {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 22px;
  margin-left: 1px;
}

.calendarLegend .legendItem {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1;
}

.calendarLegend .square {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
}

.calendarLegend .navy {
  background: var(--navy);
}