/* Bagermasage Custom Styles */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

.container {
  max-width: 1200px;
}

/* Login/Register Forms */
.auth-container {
  max-width: 500px;
  margin: 50px auto;
}

.auth-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* 4yourbody */
.4yourbody-card {
  margin-bottom: 20px;
  transition: transform 0.2s;
}

.4yourbody-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Booking Calendar */
.time-slot {
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot:hover {
  background-color: #f8f9fa;
}

.time-slot.available {
  background-color: #d4edda;
  border-color: #28a745;
}

.time-slot.booked {
  background-color: #f8d7da;
  border-color: #dc3545;
  cursor: not-allowed;
}

.time-slot.selected {
  background-color: #cce5ff;
  border-color: #007bff;
  font-weight: bold;
}

/* Profile Page */
.profile-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Admin Panel */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.stat-card h3 {
  font-size: 2.5rem;
  margin: 10px 0;
  color: #007bff;
}
