
    /* Welcome banner štýly (už existujúce) */
    .welcome-hero {
        min-height: 300px;
        position: relative;
        border: none;
    }
    
    .welcome-gradient {
        background: linear-gradient(135deg, 
            #4f46e5 0%, 
            #7c3aed 25%,
            #06b6d4 75%,
            #10b981 100%);
        background-size: 400% 400%;
        animation: welcomeGradientShift 8s ease infinite;
    }
    
    @keyframes welcomeGradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    .welcome-particles {
        pointer-events: none;
        overflow: hidden;
    }
    
    .particle-dot {
        position: absolute;
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: particleFloat 4s ease-in-out infinite;
    }
    
    @keyframes particleFloat {
        0%, 100% { 
            transform: translateY(0px) scale(1);
            opacity: 0.7;
        }
        50% { 
            transform: translateY(-15px) scale(1.2);
            opacity: 0.3;
        }
    }
    
    .welcome-content {
        z-index: 10;
    }
    
    .welcome-icon i {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        animation: iconPulse 3s ease-in-out infinite;
    }
    
    @keyframes iconPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .welcome-title {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        animation: titleSlideIn 1s ease-out;
    }
    
    @keyframes titleSlideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .welcome-subtitle {
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        animation: subtitleSlideIn 1s ease-out 0.3s both;
    }
    
    @keyframes subtitleSlideIn {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 0.9;
            transform: translateY(0);
        }
    }
    
    .welcome-actions {
        animation: actionsSlideIn 1s ease-out 0.6s both;
    }
    
    @keyframes actionsSlideIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .quick-action-btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 600;
        border-width: 2px;
        position: relative;
        overflow: hidden;
    }
    
    .quick-action-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }
    
    .quick-action-btn.btn-light:hover {
        background: rgba(255, 255, 255, 0.95);
        color: #4f46e5;
    }
    
    .quick-action-btn.btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.8);
        color: white;
    }
    
    .welcome-waves {
        color: rgba(255, 255, 255, 0.1);
        z-index: 5;
    }

    /* === NOVÉ ŠTÝLY PRE CELÚ STRÁNKU === */
    
    /* Moderné pozadie pre celú stránku */
    body {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    }
    
    /* Moderné kontajnery */
    #city {
        background: white !important;
        border: none !important;
        border-radius: 1rem !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }
    
    #city::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4f46e5, #06b6d4, #10b981);
        z-index: 1;
    }
    
    #directShopDiv {
        background: white !important;
        border: none !important;
        border-radius: 1rem !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    }
    
    #calendar_shell {
        padding-right: 0px;
    }
    
    #calendarSection {
        background: white !important;
        border: none !important;
        border-radius: 1rem !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
        position: relative;
        overflow: hidden;
    }
    
    #calendarSection::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #10b981, #06b6d4, #4f46e5);
        z-index: 1;
    }
    
    /* Moderné taby */
    .nav-tabs {
        border-bottom: none !important;
        background: #f8fafc;
        border-radius: 1rem 1rem 0 0;
        padding: 0.5rem;
        margin: 0;
        gap: 0.25rem;
    }
    
    .nav-tabs .nav-link {
        border: none !important;
        border-radius: 0.75rem !important;
        padding: 1rem 1.5rem !important;
        font-weight: 600 !important;
        color: #64748b !important;
        background: transparent !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative;
        overflow: hidden;
        margin: 0 !important;
    }
    
    .nav-tabs .nav-link:hover {
        color: #4f46e5 !important;
        background: rgba(79, 70, 229, 0.1) !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
    }
    
    .nav-tabs .nav-link.active {
        color: white !important;
        background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
        box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
        transform: translateY(-1px);
    }
    
    .nav-tabs .nav-link i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .nav-tabs .nav-link small {
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    /* Tab content */
    .tab-content {
        background: white;
        border-radius: 0 0 1rem 1rem;
        position: relative;
        z-index: 10;
    }
    
    .tab-pane {
        padding: 0 !important;
    }
    
    .tab-pane > div {
        border: none !important;
        border-radius: 0 !important;
        background: white !important;
        padding: 2rem !important;
    }
    
    /* Moderné formulárové prvky */
    .form-control {
        border: 2px solid #e2e8f0 !important;
        border-radius: 0.75rem !important;
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        background: #f8fafc !important;
        transition: all 0.3s ease !important;
        box-shadow: none !important;
    }
    
    .form-control:focus {
        border-color: #4f46e5 !important;
        background: white !important;
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1) !important;
        transform: translateY(-1px);
    }
    
    .form-control::placeholder {
        color: #94a3b8 !important;
        font-weight: 400 !important;
    }
    
    /* Moderné tlačidlá */
    .btn {
        border-radius: 0.75rem !important;
        font-weight: 600 !important;
        padding: 0.75rem 1.5rem !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-width: 2px !important;
    }
    
    .btn:hover {
        transform: translateY(-2px) !important;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
        border-color: transparent !important;
        color: white !important;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3) !important;
    }
    
    .btn-primary:hover {
        box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4) !important;
    }
    
    .btn-outline-primary {
        border-color: #4f46e5 !important;
        color: #4f46e5 !important;
        background: transparent !important;
    }
    
    .btn-outline-primary:hover {
        background: #4f46e5 !important;
        color: white !important;
        box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3) !important;
    }
    
    .btn-outline-secondary {
        border-color: #e2e8f0 !important;
        color: #64748b !important;
        background: transparent !important;
    }
    
    .btn-outline-secondary:hover {
        background: #f1f5f9 !important;
        border-color: #cbd5e1 !important;
        color: #475569 !important;
    }
    
    .btn-sm {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    /* Moderné karty */
    .card {
        border: none !important;
        border-radius: 1rem !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        background: white !important;
        overflow: hidden;
    }
    
    .card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .card-title {
        font-weight: 700 !important;
        color: #1e293b !important;
        margin-bottom: 0.75rem !important;
    }
    
    .card-text {
        color: #64748b !important;
        line-height: 1.6 !important;
    }
    
    .card-footer {
        background: #f8fafc !important;
        border-top: 1px solid #e2e8f0 !important;
        padding: 1rem 1.5rem !important;
    }
    
    /* Shop cards special styling */
    .shop-card {
        cursor: pointer !important;
        position: relative;
        overflow: hidden;
    }
    
    .shop-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .shop-card:hover::before {
        left: 100%;
    }
    
    .shop-card.selected {
        border: 2px solid #4f46e5 !important;
        box-shadow: 0 12px 30px rgba(79, 70, 229, 0.2) !important;
        transform: translateY(-2px) !important;
    }
    
    .shop-card.selected::after {
        content: '✓';
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 2rem;
        height: 2rem;
        background: #4f46e5;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.875rem;
    }
    
    /* Service cards */
    .service-card {
        cursor: pointer !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative;
        overflow: hidden;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #10b981, #06b6d4);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .service-card:hover::before {
        transform: scaleX(1);
    }
    
    .service-card:hover {
        transform: translateY(-6px) !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Badges */
    .badge {
        border-radius: 0.5rem !important;
        padding: 0.375rem 0.75rem !important;
        font-weight: 600 !important;
        font-size: 0.75rem !important;
    }
    
    .badge.bg-secondary {
        background: #e2e8f0 !important;
        color: #475569 !important;
    }
    
    .badge.bg-primary {
        background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
    }
    
    .badge.bg-success {
        background: linear-gradient(135deg, #10b981, #059669) !important;
    }
    
    /* Alerts */
    .alert {
        border: none !important;
        border-radius: 1rem !important;
        padding: 1.5rem !important;
        font-weight: 500 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    .box-top-shadow {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(79, 70, 229, 0.1)) !important;
        color: #0369a1 !important;
        border-top: 4px solid #06b6d4 !important;
    }

    .alert-info {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(79, 70, 229, 0.1)) !important;
        color: #0369a1 !important;
        border-left: 4px solid #06b6d4 !important;
    }
    
    .alert-success {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1)) !important;
        color: #047857 !important;
        border-left: 4px solid #10b981 !important;
    }
    
    .alert-danger {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1)) !important;
        color: #dc2626 !important;
        border-left: 4px solid #ef4444 !important;
    }
    
    /* List groups */
    .list-group {
        border-radius: 1rem !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        overflow: hidden;
    }
    
    .list-group-item {
        border: none !important;
        padding: 1rem 1.5rem !important;
        background: white !important;
        transition: all 0.3s ease !important;
        cursor: pointer;
    }
    
    .list-group-item:hover {
        background: #f8fafc !important;
        transform: translateX(4px);
    }
    
    .list-group-item:not(:last-child) {
        border-bottom: 1px solid #e2e8f0 !important;
    }
    
    /* Spinner */
    .spinner-border {
        color: #4f46e5 !important;
    }
    
    /* Text colors */
    .text-primary {
        color: #4f46e5 !important;
    }
    
    .text-success {
        color: #10b981 !important;
    }
    
    .text-info {
        color: #06b6d4 !important;
    }
    
    .text-muted {
        color: #64748b !important;
    }
    
    /* Calendar styling */
    #dates-container {
        background: white !important;
        border-radius: 0 0 1rem 1rem !important;
        padding: 1.5rem !important;
        position: relative;
        z-index: 10;
    }
    
    /* Map styling */
    #dynamicCitiesMap {
        border-radius: 1rem !important;
        overflow: hidden !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Responzívne úpravy */
    @media (max-width: 768px) {
        .welcome-hero {
            min-height: 250px;
        }
        
        .welcome-content {
            padding: 2rem 1rem !important;
        }
        
        .welcome-title {
            font-size: 1.8rem !important;
        }
        
        .welcome-subtitle {
            font-size: 1rem !important;
        }
        
        .quick-action-btn {
            font-size: 0.9rem;
            padding: 0.5rem 1.5rem !important;
        }
        
        .welcome-actions {
            gap: 0.5rem !important;
        }
        
        .nav-tabs .nav-link {
            padding: 0.75rem 1rem !important;
        }
        
        .nav-tabs .nav-link i {
            font-size: 1rem;
        }
        
        .nav-tabs .nav-link small {
            font-size: 0.7rem;
        }
        
        .tab-pane > div {
            padding: 1.5rem !important;
        }
    }
    
    @media (max-width: 576px) {
        .welcome-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .quick-action-btn {
            width: 100%;
            max-width: 250px;
        }
        
        .nav-tabs {
            padding: 0.25rem;
        }
        
        .nav-tabs .nav-link {
            padding: 0.5rem 0.75rem !important;
            margin: 0.125rem !important;
        }
        
        .tab-pane > div {
            padding: 1rem !important;
        }
    }

    /* */
    
        #cityTabs {
            flex-wrap: nowrap;
        }
        
        #cityTabs .nav-link {
            border-radius: 8px 8px 0 0;
            margin-right: 2px;
            font-weight: 500;
            padding: 10px 8px;
            transition: all 0.3s ease;
            color: #6c757d;
            border: 1px solid transparent;
            min-height: 70px;
            white-space: nowrap;
            flex: 1;
        }
        
        /*#cityTabs .nav-link:hover {
            color: #495057;
            background-color: #f8f9fa;
            border-color: #dee2e6 #dee2e6 #fff;
        }*/
        
        #cityTabs .nav-link.active {
            color: #0d6efd;
            background-color: #fff;
            border-color: #dee2e6 #dee2e6 #fff;
            font-weight: 600;
        }
        
        #cityTabs .nav-link i {
            font-size: 1.2em;
            opacity: 0.8;
        }
        
        #cityTabs .nav-link.active i {
            opacity: 1;
            color: #0d6efd;
        }
        
        #cityTabs .nav-link small {
            font-size: 0.75em;
            line-height: 1.2;
        }
        
        .tab-content {
            border: 1px solid #dee2e6;
            border-top: none;
            border-radius: 0 0 8px 8px;
            background-color: #fff;
        }
        
        /* Responsive dizajn pre menšie obrazovky */
        @media (max-width: 768px) {
            #cityTabs .nav-link {
                padding: 8px 4px;
                min-height: 60px;
            }
            
            #cityTabs .nav-link small {
                font-size: 0.7em;
            }
            
            #cityTabs .nav-link i {
                font-size: 1.1em;
            }
        }
        
        @media (max-width: 576px) {
            #cityTabs .nav-link small {
                display: none;
            }
            
            #cityTabs .nav-link {
                min-height: 50px;
                padding: 8px 4px;
            }
            
            #cityTabs .nav-link i {
                margin-bottom: 0 !important;
                font-size: 1.3em;
            }
        }