.umroh-container {
    padding: 20px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }
  

  .profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .profile-text h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
  }
  
  .profile-text p {
    font-size: 14px;
    color: #666;
  }
  
 
  .package-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .package-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: white;
    color: #555;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .package-option.active {
    background-color: #2d8cf0;
    color: white;
    border-color: #2d8cf0;
  }
  
 
  .package-details {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
  }
  
  .package-header-section {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }
  
  .package-header-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }
  
  .package-price {
    font-size: 20px;
    font-weight: bold;
    color: #2d8cf0;
  }
  
  .package-section {
    margin-bottom: 20px;
  }
  
  .package-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
  }
  

  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .schedule-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
  }
  
  .schedule-date, .schedule-duration {
    font-size: 15px;
    font-weight: 500;
    color: #333;
  }
  
  .schedule-airport {
    font-size: 14px;
    color: #666;
  }
  

  .accommodation-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
  }
  
  .accommodation-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .accommodation-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin: 0;
  }

  .accommodation-details {
    padding-left: 30px;
  }
  
  .hotel-name {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
  }

  .hotel-distance {
    font-size: 13px;
    color: #888;
  }

  .hotel-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  

  .action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .checklist-btn, .daftar-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .checklist-btn {
    background-color: white;
    color: #2d8cf0;
    border: 1px solid #2d8cf0;
  }

  .checklist-btn:hover {
    background-color: #f0f7ff;
  }

  .daftar-btn {
    background-color: #2d8cf0;
    color: white;
    border: 1px solid #2d8cf0;
  }
  
  .daftar-btn:hover {
    background-color: #1a7ad9;
  }

  @media (max-width: 480px) {
    .action-buttons {
      flex-direction: column;
    }
    
    .accommodation-card {
      padding: 12px;
    }
  }