.PicturesGalleryMobile .owl-stage-outer .item {
  max-height: 500px;
  height: 400px;
}
.PicturesGalleryMobile .owl-stage-outer .item img {
  max-height: 500px;
  height: 400px;
  object-fit: cover;
}
.PicturesGalleryMobile .owl-stage-outer .item video {
  max-height: 500px;
  height: 400px;
  object-fit: cover;
}

.form-sections {
  padding: 80px 0px;
}
.form-card-detail {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  background: #fff;
  padding: 30px;
}
.form-card-detail .signup-title{
    font-size: 30px;
    font-weight: bold;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}
.custom-dropdown {
  .dropdown-toggle {
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1;
    right: 0;
    border-radius: 5px;
    margin-top: 5px;
  }

  .dropdown-item {
    color: #1f2233;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
  }
}

.main-container {
  background: #ffffff;
  min-height: 100vh;
  padding: 2rem;
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
}

.page-title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.page-title p {
  color: #64748b;
  font-size: 1rem;
}

.orders-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.order-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.order-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.order-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-title {
  flex: 1;
}

.order-title h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.order-id {
  font-size: 0.875rem;
  color: #64748b;
  font-family: "Monaco", monospace;
}

.status-badge {
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.status-confirmed {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.order-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

.order-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.detail-text {
  min-width: 0;
}

.detail-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 500;
}

.detail-value {
  font-size: 0.875rem;
  color: #0f172a;
  font-weight: 500;
}

.order-summary {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}

.summary-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-label {
  color: #64748b;
}

.summary-value {
  color: #0f172a;
  font-weight: 500;
}

.summary-total {
  border-top: 1px solid #e2e8f0;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.summary-total .summary-value {
  color: #059669;
}

.order-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.btn-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
}

.btn-secondary {
  background: #f8fafc;
  color: #475569;
  border-color: #e2e8f0;
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.btn-danger {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}

.btn-danger:hover {
  background: #dc2626;
  border-color: #dc2626;
}

.btn i {
  font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-container {
    padding: 1rem;
  }

  .page-title h1 {
    font-size: 1.5rem;
  }

  .order-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .order-details {
    grid-template-columns: 1fr;
  }

  .order-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .order-item {
    padding: 1rem;
  }

  .detail-item {
    gap: 0.5rem;
  }

  .detail-icon {
    width: 28px;
    height: 28px;
  }
}

.profile_page h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.profile_page .sidebar {
  width: 30%;
}

.profile_page .card {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.profile_page .profile-info {
  display: flex;
  align-items: center;
}

.profile_page .profile-info img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border-radius: 50%;
  object-fit: contain;
}

.profile_page .profile-name {
  font-weight: 600;
  font-size: 20px;
}

.profile_page .profile-phone {
  font-size: 16px;
  color: #777;
}

.profile_page .sidebar nav a {
  display: block;
  padding: 12px 15px;
  color: #111;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 5px;
  border-radius: 6px;
}

.profile_page .sidebar nav a.active,
.profile_page .sidebar nav a:hover {
  background-color: #f6921e;
  color: white;
}

.profile_page .main {
  width: 70%;
}

.profile_page .form-section {
  display: none;
}

.profile_page .form-section.active {
  display: block;
}

.profile_page form {
  display: flex;
  flex-direction: column;
}

.profile_page label {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
}

.profile_page input,
.profile_page select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.profile_page .note {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.save-btn {
  background-color: #f6921e;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  margin-top: 25px;
  cursor: pointer;
  font-size: 16px;
  width: 120px;
}

.save-btn:hover {
  background-color: #f6911eb7;
}

.profile_page .profile_wrapper {
  display: flex;
  gap: 30px;
}

.profile_page .profile_page h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 20px;
}

.profile_page .booking-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.profile_page .booking-table th,
.profile_page .booking-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.profile_page .booking-table th {
  background-color: #f6921e;
  color: white;
}

.profile_page .booking-table tr:hover {
  background-color: #f1f1f1;
}

.profile_page .status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
}

.confirmed {
  background-color: #d4edda;
  color: #155724;
}

.pending {
  background-color: #fff3cd;
  color: #856404;
}

.cancelled {
  background-color: #f8d7da;
  color: #721c24;
}

@media (max-width: 768px) {
  .profile_page .booking-table th,
  .profile_page .booking-table td {
    padding: 10px;
    font-size: 14px;
  }
}
