@charset "UTF-8";

/* central-dashboard/src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --neo-basket-light: #FF6AA7;
  --neo-basket-dark: #CC384E;
  --neo-futsal-light: #FE5949;
  --neo-futsal-dark: #951D13;
  --neo-volley-light: #FAE571;
  --neo-volley-dark: #FDBE00;
  --neo-hand-light: #51B28B;
  --neo-hand-dark: #20473C;
  --neo-hockey-light: #A3EFFD;
  --neo-hockey-dark: #2022E9;
  --neo-purple-light: #7863F6;
  --neo-purple-dark: #3A0686;
  --neo-black: #000000;
  --neo-beige: #FEECD8;
  --neo-grey: #EBEFEE;
  --neo-white: #FFFFFF;
  --neo-font-body:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  --primary-color: #2022E9;
  --primary-light: #A3EFFD;
  --secondary-color: #64748b;
  --success-color: #51B28B;
  --warning-color: #FDBE00;
  --danger-color: #FE5949;
  --bg-color: var(--neo-grey);
  --card-bg: var(--neo-white);
  --text-primary: var(--neo-black);
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
}
body {
  font-family: var(--neo-font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--primary-color);
  color: white;
}
.btn-primary:hover {
  background: #1d4ed8;
}
.btn-danger {
  background: var(--danger-color);
  color: white;
}
.btn-danger:hover {
  background: #dc2626;
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-success {
  background: #d1fae5;
  color: #065f46;
}
.badge-warning {
  background: #fed7aa;
  color: #92400e;
}
.badge-danger {
  background: #fee2e2;
  color: #991b1b;
}
.badge-secondary {
  background: #e2e8f0;
  color: #475569;
}
.status-online {
  color: var(--success-color);
}
.status-offline {
  color: var(--text-secondary);
}
.status-error {
  color: var(--danger-color);
}
.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 1rem;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}
.btn:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(32, 34, 233, 0.2);
}
a:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 0;
  border-color: var(--primary-color);
}
@media (prefers-contrast: high) {
  :root {
    --border-color: #000;
  }
  .btn {
    border: 2px solid currentColor;
  }
  .card {
    border: 2px solid var(--border-color);
  }
  .badge {
    border: 1px solid currentColor;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .spinner {
    animation: none;
    border-top-color: var(--primary-color);
  }
}
.status-online::before {
  content: "\25cf";
  margin-right: 0.25rem;
}
.status-offline::before {
  content: "\25cb";
  margin-right: 0.25rem;
}
.status-error::before {
  content: "\2715";
  margin-right: 0.25rem;
}
@media (pointer: coarse) {
  .btn,
  button,
  a {
    min-height: 44px;
    min-width: 44px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
