﻿

.Dgv-Doc-Store {
    /*height: calc(100vh - 298px);*/
    overflow-y: scroll;
    border: 1px solid #ddd;
    border-radius: 6px;
}



/*.Dgv-Doc-Sale {*/
    /*height: calc(100vh - 380px);*/
    /*overflow-y: scroll;
}*/


.mud-appbar.mud-appbar-fixed-bottom {
    position: fixed !important;
    bottom: 0;
    right: 0;
    left: 0;
}

.border-error {
    border: 1px solid red;
    border-radius: 4px; /* اختیاری */
}


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-box {
    background-color: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 10px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.custom-tabs {
    display: flex;
    border-bottom: 2px solid #3498db;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #f8f9fa;
}

.tab-button {
    flex: 1;
    padding: 5px 5px;
    border: none;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: #34495e;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

    .tab-button:hover {
        background: #e0e0e0;
    }

    .tab-button.active {
        background: #f7b843d4 !important;
        color: white;
    }

.tab-content {
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    min-height: 160px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tab-pane {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}






/*BDocStatusAppBar*/
.doc-info-bar {
    background: #efede8d4 !important;
    /*position: fixed !important;*/
    bottom: 31px;
    right: 0;
    left: 0;
}

.doc-info-bar-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    position: sticky !important;
}

.doc-info-item {
}


/*BDocStatusAppBar*/
