﻿@charset "UTF-8";
.calendar-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  text-align: center;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  font-weight: bold;
}

.calendar-days div {
  padding: 5px;
  color: #cac9c9;
  text-align: center;
}

.calendar-days div:nth-child(1) {
  color: #FC6B57;
}

.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-dates div {
  padding: 4px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
  position: relative;
}

.calendar-dates div:hover {
  background: #e0e0e0;
}

.today {
  background: var(--pastel-rose);
  color: white;
  font-weight: bold;
}

.training-date {
  color: #fff;
  background-color: var(--pinkish-red);
  position: relative;
}

.training-date::after {
  content: "•";
  color: #FC6B57;
  position: absolute;
  -webkit-text-stroke: 2px #fff; /* Stroke width and color */
  top: 0%;
  right: 0%;
  transform: translate(50%, -50%);
  font-size: 36px;
}

.sunday {
  color: #FC6B57;
  font-weight: bold;
}

.sunday.training-date {
  color: #fff;
}
