
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}
.pull-right {
    float: right;
}
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

    .huge {
        font-size: 28px;
        font-weight: 600;
    }






.large {
    font-size: 24px;
}

.huge {
    font-size: 30px;
}

.medium {
    font-size: 18px;
}



.status {
    padding: 5px 10px;
    border-start-start-radius: 10px;
    border-end-start-radius: 10px;
    display: flex;
    text-align: center;
    font-weight: bold;
    min-width: 60px;
}

.form-area {
    max-width: 1020px;
    margin: 0 auto;
}

.sub-total {
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
}

.grand-total {
    border-bottom: 2px solid gray;
    border-top: 1px solid gray;
}

.login-area {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid gray;
}

.login-page {
    /*background-color: darkgray;*/
    background-image: url(/images/background.png);
}

    .login-page h1 {
        font-size: 24px;
    }

.fileinput-button {
    border: 2px dashed gray;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    cursor: pointer;
    position: relative;
    max-height: 40px;
    max-width: 160px;
}

    .fileinput-button input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }


.rz-tabview-nav li a {
    padding: 5px 10px;
    font-weight: 300;
}


.logo-image {
    max-height: 50px;
    border-radius: 10px;
}



.dropArea {
    border: 2px dashed gray;
    padding: 10px;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    background-color: lightgray;
    font-size: 0.8rem;
    cursor: pointer;
    position: relative;
    min-height: 60px;
}

    .dropArea:hover {
        background-color: antiquewhite;
        color: #333;
    }

    .dropArea input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.dropAreaDrug {
    background-color: darkgray;
}


.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.bg-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: fadeImages 15s infinite;
    opacity: 0;
}

    .bg-frame:nth-child(1) {
        background-image: url('/images/bg1.jpg');
        animation-delay: 0s;
    }

    .bg-frame:nth-child(2) {
        background-image: url('/images/bg2.jpg');
        animation-delay: 5s;
    }

    .bg-frame:nth-child(3) {
        background-image: url('/images/bg3.jpg');
        animation-delay: 10s;
    }

@keyframes fadeImages {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.transparent-content {
    background-color: transparent !important;
    box-shadow: none;
}

.slider-wrapper {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .slider-wrapper {
        height: auto;
        min-height: 300px;
        max-height: 300px; /*Optional: limit height on small screens */
    }

    .slider-image {
        height: auto;
        max-height: 300px;
        min-height: 300px;
        object-fit: contain;
    }
}
