/* ক্যালেন্ডার বক্স */
.schedule-container {
  flex: 1; 
  max-width: 500px; /* ডেক্সটপের জন্য বড় */
  margin: 0 0 30px auto;
  padding: 25px; /* প্যাডিং বাড়ানো */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

  .schedule-container h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #004d40;
    font-size: 20px;
  }
  
  .today-date {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
    color: #00695c;
  }
  
  .calendar-box {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .calendar-box h3 {
    text-align: center;
    margin-bottom: 8px;
    color: #00796b;
    font-size: 16px;
  }
  
  #calendar {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  
  #calendar th, #calendar td {
    border: 1px solid #ddd;
    padding: 4px;
    text-align: center;
    vertical-align: top;
    height: 50px;
  }
  
  #calendar th {
    background: #00796b;
    color: white;
    font-size: 14px;
  }
  
  #calendar td.today {
    background: #ffcc80;
    font-weight: bold;
    border-radius: 6px;
  }
  
  .date-cell {
    font-size: 14px;
    font-weight: bold;
    color: #000;
  }
  
  .arabic-date {
    font-size: 10px;
    color: blue;
  }
  
  button {
    padding: 4px 8px;
    margin: 2px 3px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    background: #00796b;
    color: white;
    font-size: 13px;
  }
  
  button:hover {
    background: #004d40;
  }
  
  /* Responsive CSS */
  @media screen and (max-width: 768px) {
    .schedule-container {
      max-width: 90%;
      margin: 15px auto;
      padding: 10px;
    }
    .today-date { font-size: 16px; }
    #calendar th, #calendar td { padding: 4px; height: 45px; font-size: 12px; }
    .date-cell { font-size: 14px; }
    .arabic-date { font-size: 9px; }
    button { padding: 3px 6px; font-size: 12px; }
  }
  
  @media screen and (max-width: 480px) {
    #calendar th, #calendar td { padding: 3px; height: 40px; font-size: 11px; }
    .date-cell { font-size: 12px; }
    .arabic-date { font-size: 8px; }
    button { padding: 2px 5px; font-size: 11px; }
  }
  


  .note {
    font-size: 10px;
    color: #d32f2f;
    margin-top: 2px;
    background: #ffebee;
    padding: 2px 4px;
    border-radius: 4px;
  }
  