/* /Pages/CustomSplashScreen.razor.rz.scp.css */
*[b-vxvjydud63] {
    box-sizing: border-box;
}

app[b-vxvjydud63] {
    display: block;
    height: 100%;
    width: 100%;
}

.header-logo[b-vxvjydud63] {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 28px;
    height: 24px;
}

/* Splash Screen Animations */
@keyframes fadeInScale-b-vxvjydud63 {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse-b-vxvjydud63 {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeOut-b-vxvjydud63 {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

@keyframes spin-b-vxvjydud63 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp-b-vxvjydud63 {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Splash Screen Styles */
.splash-screen-container[b-vxvjydud63] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #1e5555 0%, #1a4040 100%);
    animation: fadeInScale-b-vxvjydud63 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 9999;
}

.splash-content[b-vxvjydud63] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 100dvw;
    padding: 20px;
}

.splash-screen-logo[b-vxvjydud63] {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    /* Animation properties */
/*    animation: fadeInScale 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both, pulse 2s cubic-bezier(0.4, 0, 0.6, 1) 1.5s infinite;*/
    /* Smooth transitions for all properties */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Text Styles */
.splash-text[b-vxvjydud63] {
    margin-bottom: 40px;
    animation: fadeInUp-b-vxvjydud63 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.splash-title[b-vxvjydud63] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.splash-subtitle[b-vxvjydud63] {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Loading Section */
.loading-section[b-vxvjydud63] {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp-b-vxvjydud63 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

.loading-spinner[b-vxvjydud63] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin-b-vxvjydud63 1s linear infinite;
    margin-bottom: 15px;
}

.loading-text[b-vxvjydud63] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Hover effects for interactive feel */
.splash-screen-logo:hover[b-vxvjydud63] {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Exit animation class (can be triggered via JavaScript) */
.splash-screen-container.fade-out[b-vxvjydud63] {
    animation: fadeOut-b-vxvjydud63 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

.splash-screen-logo.fade-out[b-vxvjydud63] {
    animation: fadeOut-b-vxvjydud63 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .splash-screen-logo[b-vxvjydud63] {
        max-width: 150px;
        max-height: 150px;
        margin-bottom: 25px;
    }

    .splash-title[b-vxvjydud63] {
        font-size: 2rem;
    }

    .splash-subtitle[b-vxvjydud63] {
        font-size: 1rem;
    }

    .splash-text[b-vxvjydud63] {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .splash-screen-logo[b-vxvjydud63] {
        max-width: 120px;
        max-height: 120px;
        margin-bottom: 20px;
    }

    .splash-title[b-vxvjydud63] {
        font-size: 1.8rem;
    }

    .splash-subtitle[b-vxvjydud63] {
        font-size: 0.9rem;
    }

    .splash-content[b-vxvjydud63] {
        padding: 15px;
    }

    .loading-spinner[b-vxvjydud63] {
        width: 35px;
        height: 35px;
    }
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .splash-screen-container[b-vxvjydud63],
    .splash-screen-logo[b-vxvjydud63],
    .splash-text[b-vxvjydud63],
    .loading-section[b-vxvjydud63] {
        animation: none;
        transition: none;
    }

        .splash-screen-logo:hover[b-vxvjydud63] {
            transform: none;
        }

    .loading-spinner[b-vxvjydud63] {
        animation: none;
    }
}
/* /Pages/PointOfSaleComponent.razor.rz.scp.css */

.pos-container[b-jdbl7527v7] {
}
/* Invoice Number Editor Styles */
.invoice-editor-container[b-jdbl7527v7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.invoice-number-input[b-jdbl7527v7] {
    padding: 0.25rem 0.5rem;
    border: 1px solid #1a4d4d;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 200px;
    background: white;
}

    .invoice-number-input:focus[b-jdbl7527v7] {
        outline: none;
        border-color: #d4af37;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    }

    .invoice-number-input.invalid[b-jdbl7527v7] {
        border-color: #c62828;
        background: #ffebee;
    }

.btn-regenerate[b-jdbl7527v7] {
    padding: 0.25rem 0.5rem;
    background: #1a4d4d;
    color: #f0c75e;
    border: 2px solid #d4af37;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

    .btn-regenerate:hover[b-jdbl7527v7] {
        background: #0d3838;
        box-shadow: 0 2px 6px rgba(13, 56, 56, 0.3);
    }

.invoice-validation-message[b-jdbl7527v7] {
    font-size: 0.75rem;
    color: #c62828;
    margin-top: 0.25rem;
}
