/* All-in-One Professional Calendar CSS */
  .cal-modal-content {
      max-width: 1200px !important;
      width: 98% !important;
  }
  
  .cal-main-box {
      border: 2px solid #d946ef;
      border-radius: 20px;
      padding: 20px;
      background: #fff;
      font-family: &quot;SolaimanLipi&quot;, sans-serif !important;
  }

  /* Live Clock Style */
  .cal-clock-box {
      text-align: center;
      background: linear-gradient(135deg, #129100, #0e5000);
      color: #fff;
      padding: 10px 20px;
      border-radius: 12px;
      display: inline-block;
      margin: 0 auto 15px auto;
      font-size: 18px;
      font-weight: 800;
      box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
  }

  /* Summary Box */
  .cal-summary-box {
      background: #fdf4ff;
      border: 1px solid #fbcfe8;
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 20px;
      text-align: justify;
      line-height: 1.6;
      color: #108200;
  }

  .cal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #f9fafb;
      padding: 15px 25px;
      border-radius: 15px;
      border: 1px solid #e5e7eb;
      margin-bottom: 15px;
  }

  .cal-nav-btn {
      background: #d946ef;
      color: #fff;
      border: none;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      box-shadow: 0 4px 10px rgba(217, 70, 239, 0.3);
  }
  .cal-nav-btn:hover { background: #c026d3; transform: scale(1.1); }

  .cal-month-title { text-align: center; }
  .cal-month-title h2 { margin: 0; color: #d946ef; font-size: 26px; font-weight: 800; }
  .cal-month-title p { margin: 5px 0 0; color: #4b5563; font-size: 15px; font-weight: 700; }

  /* Today Button */
  .cal-today-btn {
      background: #231ec3;
      color: #fff;
      border: none;
      padding: 4px 14px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: bold;
      cursor: pointer;
      margin-top: 8px;
      transition: 0.3s;
      font-family: &quot;SolaimanLipi&quot;, sans-serif !important;
  }
  .cal-today-btn:hover { background: #0e5000; box-shadow: 0 2px 8px rgba(16, 130, 0, 0.4); }

  .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
  }

  .cal-weekday {
      text-align: center;
      background: #059669;
      color: #fff;
      padding: 12px 5px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 15px;
  }
  .cal-weekday.weekend { background: #ef4444; }

  .cal-day-box {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      padding: 8px 5px;
      min-height: 95px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      transition: 0.3s;
      cursor: pointer;
  }
  .cal-day-box:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.08); border-color: #d946ef; transform: translateY(-2px); }
  .cal-day-box.empty { background: transparent; border: none; min-height: auto; box-shadow: none; cursor: default; }
  .cal-day-box.empty:hover { transform: none; }
  
  .cal-day-box.today {
      background: #fdf4ff;
      border: 2px solid #d946ef;
      box-shadow: 0 4px 15px rgba(217, 70, 239, 0.2);
  }

  /* Updated Typography for Full Text */
  .en-date {
      font-size: 15px;
      font-weight: 900;
      color: #1e293b;
      text-align: center;
      line-height: 1.2;
  }
  .cal-day-box.weekend .en-date { color: #ef4444; }

  .bn-date {
      font-size: 12px;
      font-weight: 700;
      color: #059669;
      text-align: center;
      background: #ecfdf5;
      padding: 3px 2px;
      border-radius: 4px;
      line-height: 1.2;
  }
  .ar-date {
      font-size: 12px;
      font-weight: 700;
      color: #0284c7;
      text-align: center;
      background: #f0f9ff;
      padding: 3px 2px;
      border-radius: 4px;
      line-height: 1.2;
  }

  @media (max-width: 768px) {
      .cal-main-box { padding: 12px 5px; }

      .cal-grid { 
          gap: 2px; 
          grid-template-columns: repeat(7, minmax(0, 1fr)); 
      }

      .cal-weekday { font-size: 10px; padding: 6px 1px; }
      
      .cal-day-box { min-height: 65px; padding: 4px 1px; gap: 3px; }
      
      .en-date { font-size: 11px; word-break: break-word; line-height: 1.1; }
      .bn-date, .ar-date { 
          font-size: 9px; 
          padding: 2px 1px; 
          word-break: break-word; 
          line-height: 1.1; 
      }
      
      .cal-month-title h2 { font-size: 18px; }
      .cal-month-title p { font-size: 12px; }
      .cal-nav-btn { width: 32px; height: 32px; font-size: 12px; }
      .cal-today-btn { padding: 2px 10px; font-size: 11px; }
      .cal-clock-box { font-size: 12px; padding: 6px 10px; }
  }
