/* ===== Table Styles ===== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.umrah-table {
  width: 100%;
  border-collapse: collapse;
}

.umrah-table th,
.umrah-table td {
  border: 1px solid rgba(0,0,0,0.2);
  padding: 8px;
  text-align: center;
}

.umrah-table th {
  background: #148e7d;
  color: #fff;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {

  /* Stack vertically and hide form */
  .umrah-section {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .umrah-text {
    width: 100%;
  }

 

  .umrah-text h3 {
    font-size: 16px;
    margin-top: 10px;
    color: #1ee3b5;
  }

  /* Mobile table as stacked blocks */
  .table-wrapper {
    overflow-x: hidden;
  }

  .umrah-table thead {
    display: none;
  }

  .umrah-table tbody tr {
    display: block;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 10px;
  }

  .umrah-table td {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    text-align: left;
  }

  .umrah-table td::before {
    content: attr(data-label);
    font-weight: bold;
    width: 50%;
    display: inline-block;
  }
}
