/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 /* app/assets/stylesheets/calendars.css */
.calendar-grid {
  width: 100%;
}

.date-row {
  display: flex;
  flex-wrap: wrap;
  
}

.calendar-day {
  width: calc(100% / 25);
  border: 1px solid #ccc;
  padding: 5px;
  box-sizing: border-box;
  text-align: center;
}

.calendar-day.weekend {
  background-color: #ecf4f9;
}

.calendar-day.today {
  border: 2px solid rgb(172, 29, 29);
}

.date-number {
  font-size: 10px;
  font-weight: bold;
}

.date-month {
  font-size: 10px;
  color: #555;
}


 .calendar-day.empty {
  width: calc(100% / 25);
  border: none;
  background: transparent;
}

.cell {
  height: 4rem;
  border-top: 1px solid #ccc;
  font-size: 8px;
}

.cell a {
  text-decoration: none;
  color: #444;
}

.cell a:hover {
  text-decoration: underline;
}

.external-event {
  border-left: 2px solid #fff;
}

.external-indicator {
  font-size: 8px;
  margin-right: 2px;
}

.button-as-link {
  background: none;
  border: none;
  padding: 0;
  color: blue;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
}
