.prayer-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f0f0f0;
    padding: 1rem;
  }

  .prayer-header-item {
    text-align: center;
  }

  .prayer-header-item i {
    font-size: 2rem;
    color: goldenrod;
  }

  .sehri-iftar-info {
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .sehri-iftar-info span {
    color: teal;
  }

  .prayer-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }
.prayer-header-item{
    font-size: 25px;
}
  .prayer-card {
    background: #e8f8f6;
    padding: 1.5rem;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .prayer-card h2 {
    margin-bottom: 0.5rem;
  }
.prayer-header-item img{
  width: 100px;
}
  .prayer-card p {
    margin: 0.3rem 0;
  }

  .prayer {
    /* shared style for all prayers, can be customized */
  }
  .title {
    text-align: center;
    margin-bottom: 20px;
  }
  .active-prayer {
    background-color: #e0f7fa;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .month-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
    justify-content: center;
    flex-wrap: nowrap;
    border-bottom: 2px solid #eee;
  }
  
  .month-container button {
    padding: 8px 16px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  
  .month-container button.active {
    background-color: #007b5e;
    color: #fff;
  }
  
  .table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
  }
  
  thead {
    background-color: #007b5e;
    color: white;
  }
  
  th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
  }
  
  tr.highlight {
    background-color: #007b5e;
    color: white;
  }
  @media (max-width: 768px) {
    .prayer-header {
        padding-top: 100px;
    }
  }
  @media (max-width: 600px) {
    .prayer-cards {
      flex-direction: column;
      align-items: center;
    }
  }