/* ====================================
   PROFILE PAGE STYLES
   ==================================== */

.profile-section {
  padding: 40px 20px;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.profile-container {
  max-width: 1000px;
  margin: 0 auto;
}

.profile-form-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.profile-form {
  max-width: 600px;
  margin: 0 auto;
}

.bookings-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bookings-list {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.booking-item {
  border: 1px solid #e1e5e9;
  border-radius: 10px;
  padding: 20px;
  background: #fafbfc;
  transition: box-shadow 0.3s ease;
}

.booking-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e5e9;
}

.booking-header h4 {
  margin: 0;
  color: #333;
}

.status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

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

.status-confirmed {
  background: #d1ecf1;
  color: #0c5460;
}

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

.status-completed {
  background: #d4edda;
  color: #155724;
}

.booking-details p {
  margin: 8px 0;
  color: #666;
}

.payment-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e1e5e9;
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.payment-status.paid {
  background: #d4edda;
  color: #155724;
}

.payment-status.unpaid {
  background: #fff3cd;
  color: #856404;
}

.btn-pay {
  background: #28a745;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
}

.btn-pay:hover {
  background: #218838;
}

@media (max-width: 768px) {
  .booking-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .payment-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}