/* Main custom styles for Hotel Website */
body {
  background-color: #f8f9fa;
}
.navbar-brand {
  font-weight: bold;
  letter-spacing: 1px;
}
footer {
  background: #222;
  color: #fff;
}
.card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-radius: 12px;
}
.card-img-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  object-fit: cover;
  height: 220px;
}
.btn-primary, .btn-success, .btn-outline-primary {
  border-radius: 30px;
  font-weight: 500;
}
.btn-success {
  background: #28a745;
  border: none;
}
.btn-primary {
  background: #007bff;
  border: none;
}
.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  background: #007bff;
  color: #fff;
}
.table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.table th {
  background: #f1f3f6;
}
.alert-success {
  border-radius: 8px;
}
.modal-content {
  border-radius: 16px;
}
/* Admin dashboard tweaks */
.admin-nav {
  background: #343a40;
  color: #fff;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
.admin-nav .navbar-brand {
  color: #fff;
}
.admin-nav .btn {
  border-radius: 20px;
}
