/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Simple Calendar styling */
.simple-calendar {
  width: 100%;
}

.simple-calendar table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.simple-calendar th {
  background-color: #f9fafb;
  padding: 0.5rem 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-bottom: 2px solid #e5e7eb;
}

.simple-calendar td {
  border: 1px solid #e5e7eb;
  vertical-align: top;
  transition: background-color 0.15s ease;
}

.simple-calendar td:hover {
  background-color: #f9fafb;
}

.simple-calendar .today {
  background-color: #eff6ff;
  border: 2px solid #3b82f6;
  border-radius: 0.375rem;
}

.simple-calendar .today:hover {
  background-color: #dbeafe;
}

.simple-calendar .prev-month,
.simple-calendar .next-month {
  opacity: 0.35;
  background-color: #fafafa;
}
