/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Professional Style Overhaul */
/* 1. CSS Variables for a Professional Color Palette */
:root {
  --primary-color: #d4af37; /* Gold accent color */
  --primary-color-dark: #c9a52d;
  --primary-color-light: #e5c866;
  --secondary-color: #2ecc71; /* Success green */
  --accent-color: #f1c40f; /* Warning yellow */
  --background-color: #f5f7fa; /* Light grey background */
  --surface-color: #ffffff; /* White for cards and surfaces */
  --text-color-primary: #2c3e50; /* Dark text */
  --text-color-secondary: #7f8c8d; /* Secondary text */
  --text-color-light: #95a5a6; /* Light text */
  --border-color: #e1e8ed;
  --error-color: #e74c3c;
  --success-color: #27ae60;
  --info-color: #3498db;
  --warning-color: #f39c12;
  /* Table Status Colors */
  --status-available: #27ae60;
  --status-occupied: #3498db;
  --status-in-progress: #f39c12;
  --status-serving: #e67e22;
  --status-pending-payment: #c0392b;
  /* Shadows and Effects */
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.12);
  --box-shadow-card: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* 2. Base & Typography Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin-bottom: 0.75em;
  color: var(--text-color-primary);
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--primary-color-dark);
}

/* 3. Default Component Styles */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--border-radius);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  line-height: 1.5;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
  color: var(--text-color-primary);
  background-color: var(--surface-color);
  border-color: var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
  background-color: #f8f9fa;
  border-color: #aeb8c0;
}

.btn-success {
  color: #fff;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-success:hover:not(:disabled) {
  background-color: #27ae60;
  border-color: #27ae60;
}

.btn-danger {
  color: #fff;
  background-color: var(--error-color);
  border-color: var(--error-color);
}

.btn-danger:hover:not(:disabled) {
  background-color: #c0392b;
  border-color: #c0392b;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background: #bdc3c7;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #95a5a6;
}

/*# sourceMappingURL=styles.css.map*/