/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');*/

.large {
    font-size: 24px;
}

.huge {
    font-size: 28px;
}

.medium {
    font-size: 18px;
}


.heading {
    font-size: 28px;
    border-bottom: 3px solid gray;
    margin-bottom: 0;
    margin-top: 50px;
    padding: 8px 0;
}

.section-head {
    font-size: 24px;
    border-bottom: 2px solid gray;
    margin-bottom: 0;
    margin-top: 20px;
}

.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-group {
    margin-bottom: 5px !important;
}

.bm-header {    
    padding: 10px 20px !important;
    background-color: royalblue;
    color: white;
}
.form-area {
    max-width: 920px;
    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;
    }

    .mud-tab {
        min-width: auto;
    }

h1.header {
    display: flex;
    flex-direction: row;
}

    h1.header:before, h1:after {
        content: "";
        flex: 1 1;
        border-bottom: 5px solid;
        margin: auto;
    }

    h1.header:before {
        margin-right: 10px
    }

    h1.header:after {
        margin-left: 10px
    }

    .blazored-modal {
        padding: 0 !important;
        z-index: 2000 !important;
    }



td, th {
    /*text-align: center;*/ /* Horizontal alignment */
    vertical-align: middle; /* Vertical alignment */
    padding: 10px; /* Optional for spacing */
}

.side-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 2040;
}

.side-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    z-index: 2050;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.side-modal-header {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-modal-body {
    padding: 1rem;
    overflow-y: auto;
    flex-grow: 1;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-class {
    max-height: 90%;
}

/* Modal content */
.blazored-modal-content {
    background-color: var(--mud-palette-surface) !important;
    color: var(--mud-palette-text-primary) !important;
    border-radius: 8px;
    box-shadow: var(--mud-elevation-6); /* MudBlazor shadow */
}




.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;
    width: 100%;
}

    .fileinput-button input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        display: block;
        cursor: pointer;
    }

.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/bg-01.jpg');
        animation-delay: 0s;
    }

    .bg-frame:nth-child(2) {
        background-image: url('/images/bg-02.jpg');
        animation-delay: 5s;
    }

    .bg-frame:nth-child(3) {
        background-image: url('/images/bg-03.jpg');
        animation-delay: 10s;
    }
    .bg-frame:nth-child(4) {
        background-image: url('/images/bg-04.jpg');
        animation-delay: 15s;
    }

@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;
}