/********************************************
 * Container & General Layout
 ********************************************/
 .dp-container {
    /* Wrapper containing the day/month views */
    min-width: 300px; 
    padding: 10px;  
  }
  
  /********************************************
   * Header Bar (Month/Year + Nav Buttons)
   ********************************************/
  .dp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .dp-nav-btn {
    cursor: pointer;
    background: none;
    border: 1px solid #ccc;
    padding: 4px 8px;
    margin: 0 5px;
    font-size: 0.9rem;
    border-radius: 4px;
  }
  
  .dp-switch-btn {
    cursor: pointer;
    background: none;
    border: 1px solid #ccc;
    padding: 4px 8px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    display: inline-block;
  }
  
  /********************************************
   * Month View
   ********************************************/
  .dp-year-span {
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  .dp-month-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
  }
  
  .dp-month-cell {
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  /* "Today" month (system date) */
  .dp-today-month {
    background-color: #ffe5e5; /* red/pink */
  }
  
  /* "Selected" month (if user chose a date in this month) */
  .dp-selected-month {
    background-color: #d1ecf1; /* light blue */
  }
  
  /* If an element has *both* .dp-today-month and .dp-selected-month,
     force the selected style to win */
  .dp-today-month.dp-selected-month {
    background-color: #d1ecf1;
  }
  
  /********************************************
   * Day View Table
   ********************************************/
  .dp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
  }
  
  .dp-table-header-row {
    background-color: #f0f0f0; 
  }
  
  .dp-day-header-cell {
    font-weight: bold;
    padding: 5px;
    border: 1px solid #ccc;
  }
  
  /* Each day cell (1..31) */
  .dp-day-cell {
    border: 1px solid #ccc;
    padding: 5px;
    cursor: pointer;
  }
  
  /* Empty cells (leading/trailing) */
  .dp-empty-day-cell {
    border: 1px solid #ccc;
    padding: 5px;
    background-color: #fafafa;
  }
  
  /********************************************
   * Day Cell Highlights
   ********************************************/
  /* "Today" day (system date) */
  .dp-today-day {
    background-color: #ffe5e5; /* pink */
  }
  
  /* "Selected" day (if user specifically chose it) */
  .dp-selected-day {
    background-color: #d1ecf1; /* light blue */
  }
  
  /* If an element has both .dp-today-day and .dp-selected-day,
     the "selected" style overrides */
  .dp-today-day.dp-selected-day {
    background-color: #d1ecf1;
  }
  
  /********************************************
   * Month Title Span (Day View)
   ********************************************/
  .dp-month-title-span {
    font-weight: bold;
    font-size: 1rem;
  }
  
  /********************************************
   * Cancel Button (SweetAlert2)
   ********************************************/
  .dp-cancel-btn {
    background-color: #ccc;
    color: #444;
    border: none;
    margin-right: 10px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .dp-cancel-btn:hover {
    background-color: #bbb;
  }
  