/* ================================================================== */
/* === WEB CALENDAR STİLLERİ: >= 769px === */
/* ================================================================== */

/* ==== Calendar-specific dimensions ==== */
:root {
  --gutter-w: 88px;
  --gutter-gap: 10px;
  --hour-h: 48px;
  --hours: 24;
}

/* ======= CALENDAR VIEW CONTAINER ======= */
.calendar-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  position: relative;
}

/* ======= WEEK HEADER ======= */
.week-header {
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #111;
  overflow: hidden;
  display: flex;
  height: 90px;
  flex: none;
  box-sizing: border-box;
}

.week-day-header {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #111;
  background: #000;
}

.week-day-header:last-child {
  border-right: none;
}

.week-day-name {
  font-size: 11px;
  color: #e5e7eb;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.week-day-number {
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  margin-top: 4px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 4px auto 0;
}

.week-day-number.today {
  background-color: #1a73e8;
  color: #ffffff;
  font-weight: 500;
}

.week-day-place-badge {
  font-size: 9px;
  color: #cbd5e1;
  background: #000;
  border: 1px solid #111;
  padding: 2px 10px;
  border-radius: 12px;
  margin-top: 4px;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ======= TIME GUTTER ======= */
.time-gutter {
  width: var(--gutter-w);
  flex-shrink: 0;
  background-color: #000;
  height: auto;
}

.week-header .time-gutter {
  height: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5px;
  font-size: 10px;
  font-weight: 400;
  color: #e5e7eb;
  position: relative;
  border-bottom: 1px solid #222;
}

.time-slot {
  height: var(--hour-h);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 4px;
  padding-right: 8px;
  font-size: 10px;
  color: #9ca3af;
  position: relative;
  font-weight: 400;
  background: #000;
}

/* ======= GRID STRUCTURE ======= */
.week-grid,
.three-days-grid,
.four-days-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}

.grid-body {
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #000;
  flex: 1;
  position: relative;
  display: flex;
  border-bottom: 1px solid #111;
}

.grid-body .time-gutter,
.grid-body .calendar-grid {
  height: min-content;
}

.grid-body .calendar-grid,
.grid-body .day-column {
  min-height: calc(var(--hours) * var(--hour-h));
}

.calendar-grid {
  position: relative;
  display: flex;
  flex: 1;
  background-color: #000;
  z-index: 0;
  height: auto;
}

.calendar-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    #111 0,
    #111 1px,
    transparent 1px,
    transparent var(--hour-h)
  );
  pointer-events: none;
  z-index: 0;
}

.day-column {
  flex: 1;
  position: relative;
  background: #000;
  z-index: 1;
  border-right: 1px solid #111;
}

.day-column:last-child {
  border-right: none;
}

.hour-slot {
  height: var(--hour-h);
  cursor: pointer;
  background: transparent;
  position: relative;
}

.hour-slot:hover {
  background-color: #f8f9fa;
}

/* ======= PAST DAYS (DISABLED) ======= */
.hour-slot.past {
  background: repeating-linear-gradient(
    45deg,
    #0b0b0b,
    #0b0b0b 10px,
    #121212 10px,
    #121212 20px
  );
  cursor: not-allowed;
  opacity: 0.55;
}

.hour-slot.past:hover {
  background: repeating-linear-gradient(
    45deg,
    #0b0b0b,
    #0b0b0b 10px,
    #121212 10px,
    #121212 20px
  );
}

/* ======= BLOCKED SLOTS ======= */
.hour-slot.blocked {
  background: repeating-linear-gradient(
    45deg,
    #111,
    #111 10px,
    #1a1a1a 10px,
    #1a1a1a 20px
  );
  cursor: not-allowed;
  opacity: 0.7;
}

.hour-slot.blocked:hover {
  background: repeating-linear-gradient(
    45deg,
    #111,
    #111 10px,
    #1a1a1a 10px,
    #1a1a1a 20px
  );
}

/* ======= DERS BLOKLARI ======= */
.ders-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 4px;
  font-size: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #f093fb;
  pointer-events: none;
}

/* ======= NOW LINE ======= */
.now-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ea4335;
  pointer-events: none;
  z-index: 10;
}

.now-dot {
  position: absolute;
  left: 0;
  background-color: #ea4335;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  transform: translateX(-6px) translateY(-5px);
  pointer-events: none;
  z-index: 11;
}

/* ======= EVENT BLOCKS ======= */
.event-block {
  display: none !important;
}

.event-block:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.event-block.my-event {
  opacity: 1;
}

.event-block.someone-else-event {
  opacity: 0.8;
}

.event-block.event-block--masked {
  background: #e5e7eb !important;
  color: transparent !important;
  pointer-events: none;
  border: 1px solid #d1d5db;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

/* ======= FIXED APPOINTMENT SLOTS (WEB) ======= */
.slot-block {
  position: absolute;
  left: 6px;
  right: 6px;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.25;
  display: flex;
  gap: 6px;
  align-items: center;
  border: 1px solid #1f1f1f;
  background: linear-gradient(145deg, #0f0f14 0%, #0c0c11 100%);
  color: #e5e7eb;
  z-index: 6;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  min-height: 58px;
}

.slot-block.booked {
  background: linear-gradient(145deg, #0c1a2e 0%, #0b1626 100%);
  border: 1px solid #1e3a8a;
  box-shadow: 0 4px 10px rgba(26, 115, 232, 0.16);
  cursor: default;
}

.slot-block.leave {
  background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 100%);
  border: 1px solid #c084fc;
  box-shadow: 0 4px 10px rgba(147, 51, 234, 0.12);
  cursor: not-allowed;
}

.slot-block.past {
  background: linear-gradient(145deg, #0f172a 0%, #0b1220 100%);
  border: 1px solid #334155;
  box-shadow: 0 4px 10px rgba(148, 163, 184, 0.08);
  cursor: not-allowed;
  opacity: 0.9;
}

.slot-block-button.leave {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: white;
  cursor: not-allowed;
  opacity: 0.9;
}

.slot-block-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  max-width: 36px;
  padding: 4px 2px;
  border-radius: 6px;
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  border: 1px solid #7f1d1d;
  box-shadow: 0 6px 10px rgba(185, 28, 28, 0.25);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.1;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.slot-block-time span:last-child {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 8px;
}

.slot-block-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.slot-block-title {
  font-weight: 700;
  color: #f8fafc;
  font-size: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-block-meta {
  color: #cbd5e1;
  font-size: 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  word-break: break-word;
}

.slot-block-meta-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-block-meta-line.name-line {
  font-weight: 700;
  color: #f8fafc;
}

.slot-block-meta-line.info-line {
  color: #cbd5e1;
}

.slot-block-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.slot-block-button {
  border: none;
  border-radius: 8px;
  padding: 4px 6px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  min-width: 50px;
  font-size: 7px;
  line-height: 1.1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.slot-block-button.available {
  background: #ffffff;
  color: #08210f;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.18);
  line-height: 1.1;
}

.slot-block-button.available:hover {
  transform: translateY(-1px);
}

.slot-block-button.booked {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  cursor: not-allowed;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.25);
  min-width: 50px;
}

.slot-block-button.past {
  background: #1f2937;
  color: #cbd5e1;
  cursor: not-allowed;
  box-shadow: none;
}

.slot-block-button-line {
  display: block;
}

.slot-block-side-actions {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.slot-block-icon-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #333;
  background: #111;
  color: #e5e7eb;
  font-size: 11px;
  cursor: pointer;
  transition: transform 0.1s ease, background-color 0.2s;
}

.slot-block-icon-btn:hover {
  transform: translateY(-1px);
}

.slot-block-icon-btn.danger {
  border-color: #7f1d1d;
  color: #fca5a5;
}

.slot-info-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.slot-info-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.slot-info-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0f0f14;
  color: #e5e7eb;
  padding: 18px 20px;
  border-radius: 12px;
  width: 350px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid #1e1e1e;
}

.slot-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.slot-info-title {
  font-weight: 800;
  font-size: 17px;
  margin-left: 4px;
}

.slot-info-close {
  background: #111;
  border: 1px solid #333;
  color: #e5e7eb;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
}

.slot-info-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 4px;
}

.slot-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  align-items: center;
}

.slot-info-label {
  color: #9ca3af;
  font-weight: 600;
  min-width: 70px;
  text-align: left;
}

.slot-info-value {
  color: #e5e7eb;
  font-weight: 600;
  text-align: left;
  flex: 1;
  white-space: nowrap;
}

.slot-info-input,
.slot-info-textarea {
  flex: 1;
  background: #111;
  border: 1px solid #333;
  color: #e5e7eb;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 12px;
}

.slot-info-textarea {
  resize: vertical;
}

.slot-info-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.slot-info-save {
  background: #0ea5e9;
  border: none;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.slot-info-save:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ======= TEMPORARY EVENT STYLES ======= */
.temp-event {
  position: absolute;
  left: 4px;
  right: 4px;
  color: #fff;
  border-radius: 4px;
  padding: 4px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  z-index: 1;
  box-sizing: border-box;
  pointer-events: none;
}

.temp-event-default {
  background-color: rgba(3, 155, 229, 0.3);
  border-radius: 6px;
  padding: 4px 8px;
  border: 1px dashed rgba(3, 155, 229, 0.8);
}

.temp-event-default .temp-event-title {
  font-weight: 500;
}

.temp-task-container {
  background: #4285f4;
  border: 1px solid #d2e3fc;
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 12px;
}

.temp-task-icon-wrapper {
  display: flex;
  align-items: center;
}

.temp-task-icon {
  font-size: 14px;
}

.temp-task-title,
.temp-task-time {
  font-size: 11px;
}

.temp-appointment-container {
  background: #f1f3f4;
  border: 1px solid #dadce0;
  color: #1f1f1f;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
}

.temp-appointment-icon-wrapper {
  display: flex;
  align-items: center;
}

.temp-appointment-icon {
  font-size: 16px;
  color: #5f6368;
}

.temp-out-of-office-container {
  background: #e1f3fc;
  border: 1px solid #d2e3fc;
  color: #1f1f1f;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 8px;
}

.temp-out-of-office-icon-wrapper {
  display: flex;
  align-items: center;
}

.temp-out-of-office-icon {
  font-size: 16px;
  color: #1a73e8;
}

.temp-out-of-office-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.temp-focus-time-container {
  background: #039be5;
  border: 1px solid #d2e3fc;
  color: white;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 8px;
}

.temp-focus-time-icon-wrapper {
  display: flex;
  align-items: center;
}

.temp-focus-time-icon {
  font-size: 16px;
}

.temp-focus-time-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ======= MONTH VIEW ======= */
.month-view-wrapper {
  flex: 1;
  padding: 16px;
  background: #ffffff;
  overflow: auto;
}

.month-grid-container {
  border: 1px solid #dadce0;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.month-day-header {
  text-align: center;
  padding: 12px 0;
  font-size: 12px;
  color: #70757a;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #dadce0;
}

.month-day-cell {
  min-height: 120px;
  border-right: 1px solid #dadce0;
  border-bottom: 1px solid #dadce0;
  position: relative;
  background: #ffffff;
  padding: 8px;
}

.month-day-cell.past {
  background: #f8f9fa;
  opacity: 0.75;
}

.month-day-cell.past .month-day-number {
  color: #9aa0a6;
}

.month-day-cell:nth-child(7n) {
  border-right: none;
}

.month-day-number {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  color: #3c4043;
  padding: 4px 8px;
  border-radius: 50%;
}

.month-day-number.today {
  background-color: #1a73e8;
  color: #ffffff;
  font-weight: 500;
}

.month-day-number.other-month {
  color: #a2a4a7;
}

.month-day-cell.is-hidden {
  background: #f8f9fa;
  pointer-events: none;
}

.month-day-events-desktop {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.desktop-event-chip {
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ======= YEAR VIEW ======= */
.year-view-wrapper {
  flex: 1;
  overflow: auto;
  background: #ffffff;
  padding: 24px;
}

.year-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.year-month {
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 12px;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.year-month:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.year-month-title {
  font-size: 16px;
  font-weight: 500;
  color: #3c4043;
  text-align: center;
  margin-bottom: 8px;
}

.year-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 11px;
  text-align: center;
  gap: 2px;
}

.year-day-header {
  font-weight: 500;
  color: #70757a;
  text-transform: uppercase;
}

.year-day {
  padding: 4px;
  color: #3c4043;
  font-weight: 400;
}

.year-day.past:not(.today) {
  color: #9aa0a6;
  opacity: 0.7;
}

.year-day.today {
  background-color: #1a73e8;
  color: #fff;
  border-radius: 50%;
}

.year-day.other-month {
  color: #a2a4a7;
}

/* ======= SCHEDULE VIEW ======= */
.schedule-view-fullscreen {
  flex: 1;
  display: flex;
  width: 100%;
  height: 100%;
  background: transparent;
  position: relative;
  z-index: 1;
}

.schedule-view {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.no-events-message {
  font-size: 18px;
  font-weight: 500;
  color: #9aa0a6;
  text-align: center;
  padding: 20px;
  display: block;
  visibility: visible;
}

.schedule-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #dadce0;
  padding: 8px 0;
}

.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  text-align: center;
  margin-right: 24px;
  font-size: 12px;
  color: #70757a;
  line-height: 1;
  flex-shrink: 0;
}

.schedule-day-number {
  font-size: 24px;
  font-weight: 400;
  color: #3c4043;
}

.schedule-day-name {
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}

.schedule-event {
  display: flex;
  align-items: flex-start;
  flex-grow: 1;
  line-height: 1.2;
  padding-top: 4px;
}

.schedule-event-dot {
  width: 8px;
  height: 8px;
  background-color: #1a73e8;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.schedule-event-content {
  flex-grow: 1;
}

.schedule-event-title {
  font-size: 14px;
  color: #3c4043;
  font-weight: 500;
  margin-bottom: 4px;
}

.schedule-event-time {
  font-size: 12px;
  color: #70757a;
}

/* ======= WEB APPOINTMENT SLOTS ======= */
.web-slot-card {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 16px;
}

.web-slot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.web-slot-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a73e8;
  text-transform: capitalize;
}

.web-slot-date {
  color: #5f6368;
  font-size: 14px;
}

.web-slot-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.web-slot-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #e0e3e7;
  border-radius: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.web-slot-row.booked {
  background: #f8f9fa;
  border-color: #e8eaed;
}

.web-slot-row.leave {
  background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 100%);
  border-color: #c084fc;
}

.web-slot-row.past {
  background: #f8f9fa;
  border-color: #e8eaed;
  opacity: 0.8;
}

.web-slot-time.leave .web-slot-time-main,
.web-slot-time.leave .web-slot-time-sub {
  color: #9333ea;
}

.web-slot-button.leave {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: white;
  cursor: not-allowed;
}

.web-slot-time {
  width: 110px;
  text-align: center;
}

.web-slot-time-main {
  font-weight: 700;
  color: #1a73e8;
  font-size: 15px;
}

.web-slot-time-sub {
  color: #5f6368;
  font-size: 12px;
}

.web-slot-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.web-slot-name {
  font-weight: 600;
  color: #202124;
}

.web-slot-meta {
  color: #5f6368;
  font-size: 13px;
  word-break: break-word;
}

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

.web-slot-button {
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.web-slot-button:not(:disabled):hover {
  box-shadow: 0 2px 6px rgba(26, 115, 232, 0.35);
}

.web-slot-button:disabled {
  background: #e8eaed;
  color: #5f6368;
  cursor: default;
  box-shadow: none;
}

.web-slot-extra {
  margin-top: 16px;
  border-top: 1px solid #e8eaed;
  padding-top: 12px;
}

.web-slot-extra-title {
  font-weight: 600;
  color: #202124;
  margin-bottom: 8px;
}

.web-slot-extra-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.web-slot-extra-item {
  padding: 10px 12px;
  border: 1px solid #e0e3e7;
  border-radius: 10px;
  background: #fff;
}

.web-slot-extra-time {
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
  font-weight: 600;
  color: #1a73e8;
}

.web-slot-extra-title-text {
  color: #202124;
  font-weight: 600;
}

.web-slot-extra-meta {
  color: #5f6368;
  font-size: 13px;
}

/* ======= SCROLLBAR STYLING ======= */
.grid-body::-webkit-scrollbar {
  width: 12px;
}

.grid-body::-webkit-scrollbar-track {
  background: #f1f3f4;
}

.grid-body::-webkit-scrollbar-thumb {
  background: #dadce0;
  border-radius: 6px;
}

.grid-body::-webkit-scrollbar-thumb:hover {
  background: #bdc1c6;
}

.month-view-wrapper::-webkit-scrollbar,
.year-view-wrapper::-webkit-scrollbar {
  width: 12px;
}

.month-view-wrapper::-webkit-scrollbar-track,
.year-view-wrapper::-webkit-scrollbar-track {
  background: #f1f3f4;
}

.month-view-wrapper::-webkit-scrollbar-thumb,
.year-view-wrapper::-webkit-scrollbar-thumb {
  background: #dadce0;
  border-radius: 6px;
}

.month-view-wrapper::-webkit-scrollbar-thumb:hover,
.year-view-wrapper::-webkit-scrollbar-thumb:hover {
  background: #bdc1c6;
}
