/*
 * 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 {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    
    .day { 
        border: 1px solid #dee2e6;
        height: 100px;
        vertical-align: top;
        padding: 5px
    }
  
    .wday-0 { background-color: #f8f9fa; }
    /* .wday-1 {}
    .wday-2 {}
    .wday-3 {}
    .wday-4 {}
    .wday-5 {} */
    .wday-6 { background-color: #f8f9fa; }
  
    .today {
      border: 2px solid #0d6efd;
    }


 
    /* .past {}
    .future {}
  
    .start-date {} */

    .prev-month {
      color: #6c757d; 
      background-color: #f8f9fa; 
      cursor: not-allowed; 
    }
    .next-month { 
      color: #6c757d; 
      background-color: #f8f9fa; 
      cursor: not-allowed; 
    }
    /*
    .current-month {}
  
    .has-events {} */
  }