/* Booking Screen Page Layout and Form Styles */

.snrb-dashboard-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.snrb-card-title {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.snrb-form-group {
  margin-bottom: 20px;
}

.snrb-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #555;
}

.snrb-form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.snrb-form-control:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0,124,186,0.2);
}

.snrb-input-relative {
  position: relative;
}

.snrb-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 0;
  margin-left: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.snrb-dropdown-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.snrb-dropdown-item:hover {
  background: #f5f5f5;
}

.snrb-dropdown-item:last-child {
  border-bottom: none;
}

.snrb-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.snrb-form-flex {
  flex: 1;
}

.snrb-btn-primary {
  background: #007cba;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.snrb-btn-primary:hover {
  background: #005a8b;
}

.snrb-btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.snrb-btn-block {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.snrb-alert {
  padding: 12px;
  border-radius: 4px;
  margin-top: 15px;
}

.snrb-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.snrb-alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.snrb-text-muted {
  color: #6c757d;
  font-size: 14px;
}
