*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #fffdf7;
    }

    header {
      background: #f9a825;
      padding: 15px;
      text-align: center;
      font-size: 26px;
      font-weight: bold;
      color: white;
    }

    /*.container {*/
    /*  max-width: 1200px;*/
    /*  margin: 20px auto;*/
    /*  padding: 20px;*/
    /*}*/

    /* Tithi Card */
    .tithi-card {
      display: flex;
      /* justify-content: space-between;
      align-items: center; */
      margin-top:20px;
      background: #8b1e2c;
      color: white;
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 30px;
    }
    .icon i  a{
        text-decoration: none;
        color: white !important;
    }
    .fa-solid {
    --fa-style: 900;
    color: white;
}

    .tithi-left {
      flex: 1;
    }

    .btn-light {
    color: #000;
    background-color: #ec8f16 !important;
    border-color: #f8f9fa;
    }

    .tithi-left h2 {
      margin: 0;
      font-size: 22px;
    }

    .tithi-left p {
      margin: 5px 12px;
    }

    .tithi-date {
      background: white;
      color: black;
      height: 82px;
      padding: 10px 15px;
      border-radius: 10px;
      text-align: center;
      font-weight: bold;
    }
    .bold{
        font-weight: bold;
    }

    .tithi-date span {
      display: block;
      font-size: 14px;
      color: black;
    }

    .sun-time {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 10px;
      font-size: 14px;
    }

    /* Calendar Section */
    /* CALENDAR HEADER – slight responsiveness */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: bold;
  color: #333;
  flex-wrap: wrap;
  gap: 10px;
}

.calendar-header button {
  background: #f57c00;
  border: none;
  color: white;
  padding: 6px 12px;
  font-size: clamp(14px, 2vw, 16px);
  border-radius: 6px;
  cursor: pointer;
}

/* CALENDAR GRID */
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5vw;
  width: 100%;
}

/* DAY NAMES */
.day-name {
  text-align: center;
  font-weight: bold;
  color: #d32f2f;
  font-size: clamp(12px, 1.5vw, 14px);
}

/* DAY CARDS */
.day-card {
  background: #fff8e7;
  border-radius: 8px;
  padding: clamp(8px, 2vw, 12px);
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  min-height: clamp(60px, 10vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(12px, 1.8vw, 14px);
}

.day-card:hover {
  background: #ffe082;
}

.day-card.active {
  background: #90caf9;
  font-weight: bold;
}

.day-card .event {
  font-size: clamp(10px, 1.5vw, 12px);
  color: #d84315;
  margin-top: 5px;
}


    
    i{
        cursor: pointer;
    }
    .icon i {
    display: none;
  }
