/* General Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f4f6;
  }
  
  /* Prayer Times Section */
  .prayer-times {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Poppins', sans-serif;
  }
  
  .prayer-times h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 600;
  }
  
  .azan-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .azan-list li {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .azan-list li:hover {
    transform: translateY(-4px);
  }
  
  .azan-list li span {
    font-weight: 500;
  }
  
  .azan-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 5px 10px rgba(255, 107, 107, 0.3);
  }
  
  .azan-btn:hover {
    background-color: #ff4757;
    box-shadow: 0px 8px 16px rgba(255, 107, 107, 0.4);
  }
  
  /* For mobile responsiveness */
  @media (max-width: 600px) {
    .azan-list li {
      font-size: 18px;
      padding: 10px 15px;
    }
    .azan-btn {
      font-size: 16px;
    }
  }
  