/**
 * Reception & Bar Page Styles - Premium Edition
 * Stili premium per le pagine Reception e Bar
 * Utilizza le variabili CSS del design system
 */

/* ============================================
   Main Content Layout
   ============================================ */

.reception-main-content,
.bar-main-content {
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 140px);
    /* Increased offset from 90px to 140px to ensure bottom space */
    height: auto;
    overflow: auto !important;
    /* Changed from hidden to allow scrolling */
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    margin: var(--spacing-1);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

/* Dark theme main content - dark background */
:root[data-theme="dark"] .reception-main-content,
:root[data-theme="dark"] .bar-main-content,
:root:not([data-theme]) .reception-main-content,
:root:not([data-theme]) .bar-main-content {
    background: rgba(30, 30, 35, 0.85) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
}

/* ============================================
   Product Section
   ============================================ */

.product-section {
    flex: 3;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: auto;
}

/* Dark theme product section - dark gradient */
:root[data-theme="dark"] .product-section,
:root:not([data-theme]) .product-section {
    background: linear-gradient(180deg, rgba(35, 35, 40, 0.9) 0%, rgba(30, 30, 35, 0.85) 100%) !important;
    border-right-color: rgba(255, 255, 255, 0.1) !important;
}

/* ============================================
   Category Tabs - Premium Style
   ============================================ */

.category-tabs {
    display: flex;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-bottom: none;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
}

.category-tab {
    padding: var(--spacing-2) var(--spacing-4);
    /* Reduced from 4/6 to 2/4 */
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-on-dark-muted);
    border-bottom: 3px solid transparent;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    position: relative;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-on-dark);
}

.category-tab.active {
    color: var(--color-accent);
    border-bottom: 3px solid var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   Product Grid - Premium Cards
   ============================================ */

.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--spacing-2);
    padding: var(--spacing-1);
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--bg-secondary);
}

/* Dark theme product grid - dark background */
:root[data-theme="dark"] .product-grid,
:root:not([data-theme]) .product-grid {
    background: rgba(30, 30, 35, 0.8) !important;
}

.product-tile {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
    padding: var(--spacing-2);
    /* Reduced from spacing-4 to spacing-2 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-base);
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

/* Dark theme product tiles - dark background */
:root[data-theme="dark"] .product-tile,
:root:not([data-theme]) .product-tile {
    background: rgba(40, 40, 45, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

:root[data-theme="dark"] .product-tile:hover,
:root:not([data-theme]) .product-tile:hover {
    background: rgba(50, 50, 55, 0.9) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6) !important;
}

.product-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 168, 83, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--color-accent);
}

.product-tile:hover::before {
    opacity: 1;
}

.product-tile h3 {
    margin: 0 0 var(--spacing-2) 0;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    font-family: var(--font-family-base);
}

/* Dark theme product tile titles - Orange */
:root[data-theme="dark"] .product-tile h3,
:root:not([data-theme]) .product-tile h3 {
    color: #FF6600 !important;
    font-size: var(--font-size-sm);
    /* Smaller text for better fit */
    margin-bottom: var(--spacing-1);
}

.product-tile p {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent-dark);
}

/* Dark theme product tile prices - light grey */
:root[data-theme="dark"] .product-tile p,
:root:not([data-theme]) .product-tile p {
    color: rgba(220, 220, 220, 0.9) !important;
}

.product-tile small,
.subscription-tile small {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dark theme subscription tiles - dark background */
:root[data-theme="dark"] .subscription-tile,
:root:not([data-theme]) .subscription-tile {
    background: rgba(40, 40, 45, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Dark theme small text in tiles - ensure readable */
:root[data-theme="dark"] .product-tile small,
:root[data-theme="dark"] .subscription-tile small,
:root:not([data-theme]) .product-tile small,
:root:not([data-theme]) .subscription-tile small {
    color: rgba(200, 200, 200, 0.8) !important;
}

/* ============================================
   Order Section - Premium Style
   ============================================ */

.order-section {
    flex: 0 0 380px;
    background: var(--bg-primary);
    padding: var(--spacing-2);
    /* Reduced from spacing-4 */
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-inner);
    min-height: 0;
    overflow: hidden;
}

@media (max-width: 1600px) {
    .order-section {
        flex: 0 0 340px;
    }
}

@media (max-width: 1400px) {
    .order-section {
        flex: 0 0 300px;
    }
}

@media (max-width: 1200px) {
    .order-section {
        flex: 0 0 300px;
    }
}

/* Dark theme order section - dark background */
:root[data-theme="dark"] .order-section,
:root:not([data-theme]) .order-section {
    background: rgba(35, 35, 40, 0.9) !important;
}

.order-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    padding: var(--spacing-2);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-3);
}

/* Dark theme order list - dark background */
:root[data-theme="dark"] .order-list,
:root:not([data-theme]) .order-list {
    background: rgba(40, 40, 45, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-details {
    flex-grow: 1;
}

.order-item-details span {
    display: block;
}

.order-item-name {
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

/* Dark theme order item name - light grey */
:root[data-theme="dark"] .order-item-name,
:root:not([data-theme]) .order-item-name {
    color: rgba(220, 220, 220, 0.9) !important;
}

.order-item-price {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Dark theme order item price - light grey */
:root[data-theme="dark"] .order-item-price,
:root:not([data-theme]) .order-item-price {
    color: rgba(200, 200, 200, 0.85) !important;
}

/* Dark theme order item border */
:root[data-theme="dark"] .order-item,
:root:not([data-theme]) .order-item {
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.order-item-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.order-item-controls button {
    background: linear-gradient(135deg, var(--color-danger), var(--color-danger-dark));
    color: var(--text-inverse);
    border: none;
    border-radius: var(--radius-sm);
    padding: var(--spacing-2) var(--spacing-3);
    cursor: pointer;
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    font-weight: var(--font-weight-medium);
}

.order-item-controls button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.order-item-controls .btn-add {
    background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
}

.order-item-controls .btn-remove {
    background: linear-gradient(135deg, var(--color-warning), var(--color-warning-dark));
}

/* ============================================
   Order Summary - Premium Style
   ============================================ */

.order-summary {
    margin-top: var(--spacing-4);
    padding-top: var(--spacing-4);
    border-top: 2px solid var(--color-accent);
}

.order-summary div {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-2);
    color: var(--text-primary);
}

/* Dark theme order summary - light grey text */
:root[data-theme="dark"] .order-summary div,
:root:not([data-theme]) .order-summary div {
    color: rgba(220, 220, 220, 0.95) !important;
}

:root[data-theme="dark"] .order-summary,
:root:not([data-theme]) .order-summary {
    border-top-color: rgba(255, 102, 0, 0.5) !important;
}

/* ============================================
   Payment Buttons - Premium Gold Accent
   ============================================ */

.payment-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-1);
    margin-top: var(--spacing-2);
}

.payment-buttons button {
    padding: var(--spacing-2) var(--spacing-1);
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    border: none;
    transition: all var(--transition-base);
}

.btn-rfid-inline {
    background: var(--color-info);
    color: white;
}

.btn-rfid-inline:hover:not(:disabled) {
    background: var(--color-info-dark);
    transform: translateY(-2px);
}

.btn-rfid-inline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-buttons button {
    flex: 1;
    padding: var(--spacing-4);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    position: relative;
    overflow: hidden;
}

.payment-buttons button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.payment-buttons button:hover::before {
    left: 100%;
}

.payment-buttons .btn-cash {
    background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
    color: var(--text-inverse);
    box-shadow: var(--shadow-md);
}

.payment-buttons .btn-cash:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.payment-buttons .btn-cash:disabled,
.payment-buttons .btn-stripe:disabled,
.payment-buttons .btn-rfid:disabled {
    background: var(--color-neutral-300);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.payment-buttons .btn-stripe {
    background: linear-gradient(135deg, #635BFF, #5048E5);
    color: var(--text-inverse);
    box-shadow: var(--shadow-md);
}

.payment-buttons .btn-stripe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.payment-buttons .btn-rfid {
    background: linear-gradient(135deg, var(--color-info), var(--color-info-dark));
    color: var(--text-inverse);
    box-shadow: var(--shadow-md);
}

.payment-buttons .btn-rfid:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.user-info-section {
    margin-bottom: var(--spacing-2);
    flex-shrink: 0;
}

.user-photo-container {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: var(--spacing-2);
}

.user-action-icons {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    padding: var(--spacing-1);
    z-index: 10;
}

.action-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(30, 30, 35, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.action-icon-btn:hover {
    background: var(--color-accent);
    color: white;
    transform: scale(1.1);
}

.action-icon-btn i {
    font-size: 1.2rem;
}

/* Dark theme user info section - ensure text is readable */
:root[data-theme="dark"] .user-info-section p,
:root[data-theme="dark"] .user-info-section span,
:root:not([data-theme]) .user-info-section p,
:root:not([data-theme]) .user-info-section span {
    color: rgba(220, 220, 220, 0.9) !important;
}

:root[data-theme="dark"] .user-info-section strong,
:root:not([data-theme]) .user-info-section strong {
    color: rgba(240, 240, 240, 0.95) !important;
}

/* ============================================
   Admin Panel - Premium Slide-out
   ============================================ */

.admin-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: var(--bg-primary);
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-slow);
    padding: var(--spacing-6);
    overflow-y: auto;
    z-index: var(--z-modal);
    border-left: 3px solid var(--color-accent);
}

.admin-panel.open {
    right: 0;
}

.admin-panel h2 {
    color: var(--color-primary);
    margin-top: 0;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: var(--spacing-4);
    font-weight: var(--font-weight-semibold);
}

/* Dark theme admin panel titles - Orange */
:root[data-theme="dark"] .admin-panel h2,
:root:not([data-theme]) .admin-panel h2 {
    color: #FF6600 !important;
}

/* Dark theme user picture title and other h3 titles in order section - Orange */
:root[data-theme="dark"] #user-picture-title,
:root[data-theme="dark"] .user-info-section h3,
:root:not([data-theme]) #user-picture-title,
:root:not([data-theme]) .user-info-section h3 {
    color: #FF6600 !important;
}

.admin-section {
    margin-bottom: var(--spacing-8);
    padding-bottom: var(--spacing-5);
    border-bottom: 1px solid var(--border-color);
}

.admin-section:last-of-type {
    border-bottom: none;
}

.admin-list {
    max-height: 200px;
    overflow-y: auto;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-3);
    background: var(--bg-secondary);
}

.admin-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-3);
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.admin-list-item:last-child {
    border-bottom: none;
}

.admin-list-item:hover {
    background: var(--color-primary-lightest);
}

.close-admin-panel {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    background: none;
    border: none;
    font-size: var(--font-size-3xl);
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.close-admin-panel:hover {
    color: var(--color-danger);
    background: var(--color-danger-lightest);
}

.admin-panel-toggle {
    margin-left: auto !important;
    color: var(--color-accent) !important;
    cursor: pointer;
}

/* ============================================
   Connection LED - Premium Style
   ============================================ */

.led {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-danger), var(--color-danger-dark));
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    box-shadow: 0 0 10px var(--color-danger);
    animation: blink 1.5s infinite;
}

.led.connected,
.led.green {
    background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
    box-shadow: 0 0 10px var(--color-success);
    animation: none;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.4;
    }
}

.connection-status {
    position: fixed;
    bottom: var(--spacing-5);
    left: var(--spacing-5);
    padding: var(--spacing-3) var(--spacing-5);
    background: linear-gradient(135deg, var(--color-danger), var(--color-danger-dark));
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    display: none;
    box-shadow: var(--shadow-lg);
}

.connection-status.connected {
    background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
    display: block;
}

.connection-status.disconnected {
    background: linear-gradient(135deg, var(--color-danger), var(--color-danger-dark));
    display: block;
}

/* ============================================
   Payment button states
   ============================================ */

.payment-buttons .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

.payment-processing {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ============================================
   Operator Page Specific Styles
   ============================================ */

.status-led {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    display: inline-block;
    opacity: 0.3;
    transition: all var(--transition-slow);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.status-led.yellow {
    background: linear-gradient(135deg, var(--color-warning), var(--color-warning-dark));
    box-shadow: 0 0 8px var(--color-warning);
}

.status-led.green {
    background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
    box-shadow: 0 0 8px var(--color-success);
}

.status-led.red {
    background: linear-gradient(135deg, var(--color-danger), var(--color-danger-dark));
    box-shadow: 0 0 8px var(--color-danger);
}

.status-led.active {
    opacity: 1;
    animation: pulse-led 0.5s ease-in-out;
}

@keyframes pulse-led {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.last-lap {
    background: linear-gradient(135deg, #ffcc80, #ffa726) !important;
    border-color: var(--color-warning) !important;
}

.exceed-max-laps {
    background: linear-gradient(135deg, #ef9a9a, #e57373) !important;
    border-color: var(--color-danger) !important;
}

.subscription-progress-wrapper {
    height: 28px;
    display: flex;
    align-items: center;
}

.subscription-progress-wrapper .progress {
    width: 100%;
    height: 20px;
    background: var(--color-neutral-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar.time-green {
    background: linear-gradient(90deg, var(--color-success), var(--color-success-light));
}

.progress-bar.time-yellow {
    background: linear-gradient(90deg, var(--color-warning), var(--color-warning-light));
    color: var(--text-primary);
}

.progress-bar.time-red {
    background: linear-gradient(90deg, var(--color-danger), var(--color-danger-light));
}

/* ============================================
   User Row Hover - List Users
   ============================================ */

.user-row {
    transition: all var(--transition-fast);
}

.user-row:hover {
    background: var(--color-primary-lightest) !important;
    transform: scale(1.005);
}

.cursor-pointer {
    cursor: pointer;
}

/* ============================================
   Info Card Animations
   ============================================ */

.info-card {
    transition: all var(--transition-spring);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ============================================
   Service List & Requirement List Styles
   ============================================ */

.service-list,
.requirement-list {
    list-style: none;
    padding-left: 0;
}

.service-list li,
.requirement-list li {
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    color: var(--text-primary) !important;
}

.service-list li:last-child,
.requirement-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: "🏢";
    margin-right: var(--spacing-3);
    font-size: var(--font-size-lg);
}

.requirement-list li::before {
    content: "✓";
    color: var(--color-success);
    font-weight: var(--font-weight-bold);
    margin-right: var(--spacing-2);
}

.contact-info {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-8);
    border: 1px solid var(--border-color);
}

/* ============================================
   Alert SM for badge simulator
   ============================================ */

.alert-sm {
    padding: var(--spacing-2) var(--spacing-3);
    font-size: var(--font-size-sm);
}

/* Staff Cards - Home Admin */
.staff-card {
    display: block;
    padding: var(--spacing-6);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

/* Dark theme staff card */
:root[data-theme="dark"] .staff-card,
:root:not([data-theme]) .staff-card {
    background: rgba(40, 40, 45, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

:root[data-theme="dark"] .staff-card:hover,
:root:not([data-theme]) .staff-card:hover {
    background: rgba(50, 50, 55, 0.95);
    border-color: var(--color-accent);
}

.staff-card i {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-3);
    color: var(--color-primary);
}

:root[data-theme="dark"] .staff-card i,
:root:not([data-theme]) .staff-card i {
    color: var(--color-accent);
}

.staff-card h3 {
    margin: 0;
    font-size: var(--font-size-xl);
    color: var(--text-primary);
}

:root[data-theme="dark"] .staff-card h3,
:root:not([data-theme]) .staff-card h3 {
    color: var(--text-inverse) !important;
}

/* Specific Card Colors */
.staff-card.reception {
    border-left: 4px solid var(--color-info);
}

.staff-card.bar {
    border-left: 4px solid var(--color-warning);
}

.staff-card.operator {
    border-left: 4px solid var(--color-success);
}

.staff-card.tower2 {
    border-left: 4px solid var(--color-danger);
}

.staff-card.register {
    border-left: 4px solid var(--color-primary);
}