/* ========================================
   CSS VARIABLES - KOLORY SYSTEMU
======================================== */
:root {
    /* Główne kolory systemu */
    --primary-blue: #4a90e2;
    --primary-blue-hover: #4a90e2;
    --primary-blue-light: #4a90e2;
    --primary-blue-dark: #4a90e2;
    
    /* Kolory akcji */
    --action-blue: #4a90e2;
    --action-blue-hover: #4a90e2;
    /* --action-blue: #007AFF;
    --action-blue-hover: #0056CC; */
    
    /* Kolory statusów */
    --success-green: #28a745;
    --warning-orange: #ffc107;
    --warning-orange-dark: #e0a800;
    --danger-red: #dc3545;
    
    /* Kolory neutralne */
    --text-primary: #333;
    --text-secondary: #666;
    --text-muted: #888;
    --text-muted-adjacent: #b3b3b3;
    --background-light: #f5f5f5;
    --background-white: #ffffff;
    --border-light: #e0e0e0;
    
    /* Cienie */
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-blue: rgba(74,144,226,0.3);
    --shadow-blue-light: rgba(74,144,226,0.2);
    --background-success: #e4f9e8;
    --background-success-adjacent: #d1f2d6;
    --background-info: #e3f0ff;
    --background-warning: #fff7d9;
    --background-error: #ffe7e6;
    --background-neutral: #f7f7f7;
    --background-pastel: #f8f9fa;
    --text-success: #217a3c;
    --text-success-adjacent: #1a5f2e;
    --text-info: #2193b0;
    --text-warning: #b8860b;
    --text-error: #dc3545;
    --border-success: #b6e2c6;
    --border-success-adjacent: #a3d9b3;
    --border-info: #b6d4fe;
    --border-warning: #ffeaa7;
    --border-error: #f5c6cb;
    --border-neutral: #e0e0e0;
}

/* KLASY POMOCNICZE */
.bg-success { background: var(--background-success) !important; }
.bg-success-adjacent { background: var(--background-success-adjacent) !important; }
.bg-info { background: var(--background-info) !important; }
.bg-warning { background: var(--background-warning) !important; }
.bg-error { background: var(--background-error) !important; }
.bg-neutral { background: var(--background-neutral) !important; }
.bg-pastel { background: var(--background-pastel) !important; }
.text-success { color: var(--text-success) !important; }
.text-success-adjacent { color: var(--text-success-adjacent) !important; }
.text-info { color: var(--text-info) !important; }
.text-warning { color: var(--text-warning) !important; }
.text-error { color: var(--text-error) !important; }
.text-muted { color: var(--text-muted) !important; }
.border-success { border-color: var(--border-success) !important; }
.border-success-adjacent { border-color: var(--border-success-adjacent) !important; }
.border-info { border-color: var(--border-info) !important; }
.border-warning { border-color: var(--border-warning) !important; }
.border-error { border-color: var(--border-error) !important; }
.border-neutral { border-color: var(--border-neutral) !important; }

/* ========================================
   SEKCJE LAYOUT - STANDARD 2025
======================================== */

.internal-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 16px;
}

.schedule_schedule-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 16px;
    overflow: hidden;
}

/* === GLOBAL STYLES === */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    overflow-x: hidden;
    padding-bottom: 100px;
}

/* ========================================
   DROPDOWN FILTERS SYSTEM - MOBILE DESIGN
======================================== */

/* Główny kontener filtrów */
.filters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

/* Pojedynczy dropdown filter */
.filter-dropdown {
    position: relative;
}

/* Przycisk dropdown (trigger) */
.filter-trigger {
    background: white;
    padding: 3px;
    margin-top: 2px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    min-height: 40px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
    position: relative;
}

.filter-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.filter-trigger.open {
    background: #f9f9f9;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px var(--shadow-blue-light);
}

/* Tytuł sekcji */
.filter-dropdown .section-title {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 3px;
    margin-bottom: 2px;
    text-align: center !important;
    justify-content: center !important;
    flex-shrink: 0;
}

.filter-dropdown .section-title::after {
    content: " ▼";
    font-size: 5px;
    margin-left: -1px;
    transition: transform 0.2s ease;
}

.filter-dropdown .filter-trigger.open .section-title::after {
    transform: rotate(180deg);
}

/* Wybrana wartość w dropdownie filtrów */
.filter-dropdown__selected-value {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    background: var(--primary-blue);
    color: white;
    border-radius: 7px;
    max-height: 16px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 1px;
    margin-left: 5px;
    margin-right: 5px;
}

/* OVERLAY BACKDROP - SPECIFIC FOR FILTERS */
.filters-grid .dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.dropdown-backdrop--active {
    opacity: 1;
    visibility: visible;
}

/* DROPDOWN MENU - SPECIFIC FOR FILTERS */
.filter-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s ease;
    margin-top: 6px;
    padding: 4px;
}

.filter-dropdown__menu--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Opcja w dropdownie filtrów */
.filter-dropdown__option {
    padding: 5px 6px;
    font-size: 11px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 7px;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.filter-dropdown__option:last-child {
    margin-bottom: 0;
}

.filter-dropdown__option:hover:not(.filter-dropdown__option--selected) {
    background: #f5f5f5;
    transform: translateX(2px);
}

.filter-dropdown__option--selected {
    background: var(--primary-blue);
    color: white;
}

/* Wybrana opcja - brak hover efektu */
.filter-dropdown__option--selected:hover {
    background: var(--primary-blue);
    color: white;
    transform: none;
}

.filter-dropdown__option--bonus {
    background: transparent;
    color: #374151;
    font-weight: 500;
}

.filter-dropdown__option--bonus:hover:not(.filter-dropdown__option--selected) {
    background: #F3F4F6;
    transform: translateX(2px);
    color: #111827;
}

.filter-dropdown__option--internal {
    background: transparent;
    color: #374151;
    font-weight: 500;
}

.filter-dropdown__option--internal:hover:not(.filter-dropdown__option--selected) {
    background: #F3F4F6;
    transform: translateX(2px);
    color: #111827;
}

/* Zablokowane opcje */
.filter-dropdown__option--disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    background: #f8f9fa;
    color: #6c757d;
    position: relative;
}

.filter-dropdown__option--disabled:hover {
    background: #f8f9fa !important;
    color: #6c757d !important;
    transform: none !important;
    cursor: not-allowed !important;
}

.filter-dropdown__option--disabled::after {
    content: '🔒';
    position: absolute;
    right: 8px;
    font-size: 10px;
    opacity: 0.7;
}

/* Animacja dla modali */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .filters-grid {
        gap: 5px;
        margin-bottom: 16px;
    }
    
    .filter-trigger {
        min-height: 40px;
        padding: 3px;
        margin-top: 2px;
    }
    
    .filter-dropdown .section-title {
        font-size: 9px;
        margin-top: 3px;
        margin-bottom: 2px;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .filter-dropdown__selected-value {
        font-size: 10px;
        padding: 2px 6px;
        max-height: 16px;
        margin-top: 1px;
        margin-left: 5px;
        margin-right: 5px;
    }
    
    .filter-dropdown__option {
        font-size: 11px;
        padding: 5px 6px;
        margin-bottom: 1px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .filters-grid {
        gap: 5px;
        margin-bottom: 16px;
    }
    
    .filter-trigger {
        min-height: 40px;
        padding: 3px;
        margin-top: 2px;
    }
    
    .filter-dropdown .section-title {
        font-size: 9px;
        margin-top: 3px;
        margin-bottom: 2px;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .filter-dropdown__selected-value {
        font-size: 10px;
        padding: 2px 6px;
        max-height: 16px;
        margin-top: 1px;
        margin-left: 5px;
        margin-right: 5px;
    }
    
    .filter-dropdown__option {
        font-size: 11px;
        padding: 5px 6px;
        margin-bottom: 1px;
        text-align: center;
        justify-content: center;
    }
}

/* ========================================
   GLOBAL STYLES - UŻYWANE W WIELU PLIKACH
======================================== */

/* ========================================
   CONTAINER
======================================== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 16px;
    width: 100%;
}

/* DESKTOP: Większy container */
@media (min-width: 769px) {
    .container {
        max-width: 1200px;
        padding: 24px;
    }
}

/* ========================================
   TOAST CONTAINER
======================================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

/* === LOADING OVERLAY === */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}
.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 48px 36px 36px 36px;
    min-width: 320px;
    max-width: 90vw;
}
.loading-spinner {
    width: 54px;
    height: 54px;
    border: 6px solid #e0e7ef;
    border-top: 6px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loading-title {
    font-size: 1.45em;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}
.loading-desc {
    font-size: 1em;
    color: #4b5563;
    margin-top: 2px;
    text-align: center;
    letter-spacing: 0.01em;
}
@media (max-width: 600px) {
    .loading-content {
        min-width: 0;
        padding: 32px 10px 24px 10px;
    }
    .loading-title { font-size: 1.1em; }
    .loading-spinner { width: 38px; height: 38px; border-width: 4px; }
}

/* ========================================
   NAVIGATION BUTTONS
======================================== */
.nav-btn {
    padding: 8px 16px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.login-btn {
    background: rgba(255,255,255,0.2);
}

.logout-btn {
    background: rgba(255,255,255,0.15);
    font-size: 0.9em;
}

/* ========================================
   SECTION TITLE
======================================== */
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   TRANSACTION CARDS
======================================== */
.transaction-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.transaction-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.transaction-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.transaction-amount {
    font-size: 18px;
    font-weight: bold;
}

.amount-positive { 
    color: #28a745; 
    font-weight: bold; 
}

.amount-negative { 
    color: #222; 
    font-weight: bold; 
}

.transaction-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 10px;
}

.transaction-description {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* ========================================
   NO TRANSACTIONS
======================================== */
.no-transactions, .no-bookings {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-transactions-icon, .no-bookings-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* ========================================
   ACTION BUTTONS
======================================== */
.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-funds {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.btn-add-funds:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.btn-withdraw {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.btn-withdraw:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108,117,125,0.3);
}

/* ========================================
   ALERTS
======================================== */
.alert {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background: #e6faea;
    color: #217a3c;
    border: 1.5px solid #b6e2c6;
}

/* ========================================
   SPINNER
======================================== */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .transaction-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .wallet-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   NAVIGATION SYSTEM - UŻYWANE WE WSZYSTKICH PODSTRONACH
======================================== */

/* ========================================
   MOBILE MENU SYSTEM
======================================== */
.menu-wrapper {
    background: white;
    padding: 8px;
    border-radius: 12px;
    margin: 0 0 16px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
}

.menu {
    display: flex;
    gap: 4px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.menu-item {
    flex: 1;
    padding: 10px 4px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.menu-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.menu-text {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 500;
}

.menu-item.active {
    background: #f0f0f0;
    color: #4A90E2;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.menu-item:hover:not(.active) {
    background: #f8f8f8;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* USER PROFILE DROPDOWN - NEW UNIQUE NAMES */
.user-profile-dropdown {
    position: absolute;
    top: 100%;
    right: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 6px;
    min-width: 200px;
}

.user-profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* DROPDOWN MENU - SPECIFIC FOR USER PROFILE DROPDOWN */
.user-profile-dropdown .dropdown-menu {
    padding: 12px;
    border-radius: 12px;
    display: block;
    height: auto;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-bottom: 2px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: #f5f5f5;
    transform: translateX(2px);
}

.dropdown-item.active {
    background: #e3f0ff;
    color: #2193b0;
}

.dropdown-item.logout {
    border-top: 1px solid #f0f0f0;
    margin-top: 6px;
    padding-top: 12px;
    color: #dc3545;
}

.dropdown-item.logout:hover {
    background: #ffeaea;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

/* USER DROPDOWN BACKDROP */
.user-dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.user-dropdown-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* MOBILE RESPONSIVE */
/* MOBILE STYLES - wartości z wzorca */
@media (max-width: 768px) {
    .menu-wrapper {
        margin: 0 0 16px 0;
        padding: 8px;
    }
    
    .menu {
        gap: 4px;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .menu-item {
        padding: 10px 4px;
        font-size: 11px;
        gap: 4px;
    }
    
    .menu-icon {
        width: 16px;
        height: 16px;
    }
    
    .menu-text {
        font-size: 11px;
    }
    
    .user-dropdown {
        right: 6px;
        min-width: 180px;
    }
    
    .dropdown-item {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* DESKTOP STYLES - większe wartości */
@media (min-width: 769px) {
    .menu-wrapper {
        padding: 12px;
    }
    
    .menu {
        gap: 8px;
    }
    
    .menu-item {
        padding: 16px 8px;
        font-size: 16px;
        gap: 8px;
    }
    
    .menu-icon {
        width: 24px;
        height: 24px;
    }
    
    .menu-text {
        font-size: 16px;
    }
}

/* ========================================
   RESPONSIVE VISIBILITY CLASSES
======================================== */

/* Desktop-only elements */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile-only elements */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block;
    }
}

/* === DEDYKOWANY LOADING STATE DLA SCHEDULE === */
.schedule-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
}

.schedule-loading-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 350px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 2px solid #4A90E2;
}

.schedule-loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e3f2fd;
  border-top: 4px solid #4A90E2;
  border-radius: 50%;
  animation: scheduleSpin 1s linear infinite;
  margin: 0 auto 20px;
}

.schedule-loading-message {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  line-height: 1.4;
}

@keyframes scheduleSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .schedule-loading-content {
    padding: 30px 20px;
    max-width: 300px;
  }
  .schedule-loading-spinner {
    width: 40px;
    height: 40px;
  }
  .schedule-loading-message {
    font-size: 14px;
  }
}

/* === DEDYKOWANY SKELETON LOADER DLA SCHEDULE LOADING === */
.schedule-loading-skeleton {
  width: 100%;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin: 10px 0;
  animation: scheduleSkeletonPulse 1.5s ease-in-out infinite;
}

.schedule-loading-skeleton-row {
  display: flex;
  margin-bottom: 8px;
  gap: 4px;
}

.schedule-loading-skeleton-cell {
  flex: 1;
  height: 20px;
  background: #e9ecef;
  border-radius: 4px;
  animation: scheduleSkeletonPulse 1.5s ease-in-out infinite;
}

.schedule-loading-skeleton-cell.time {
  flex: 0.5;
  background: #dee2e6;
}

@keyframes scheduleSkeletonPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsywność dla mobile */
@media (max-width: 768px) {
  .schedule-loading-skeleton {
    padding: 15px;
  }
  
  .schedule-loading-skeleton-cell {
    height: 16px;
  }
}

/* ========================================
   IKONY LUCIDE Z KÓŁKIEM - GLOBALNE
======================================== */

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.icon-circle.orange-600 {
    background-color: #ea580c; /* orange-600 */
    color: white;
}

.icon-circle.blue {
    background-color: var(--primary-blue);
    color: white;
}

.icon-circle.green {
    background-color: var(--success-green);
    color: white;
}

.icon-circle.gray {
    background-color: var(--text-secondary);
    color: white;
}

.lucide-icon {
    width: 20px;
    height: 20px;
}

/* Mniejsze ikony dla tekstu */
.icon-circle.small {
    width: 24px;
    height: 24px;
}

.icon-circle.small .lucide-icon {
    width: 16px;
    height: 16px;
}

/* Bardzo małe ikony dla transakcji */
.icon-circle.xs {
    width: 20px;
    height: 20px;
}

.icon-circle.xs .lucide-icon {
    width: 12px;
    height: 12px;
}