﻿form input, form select {
    width: 100%;
}
.styled-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

    .styled-table tr {
        color: #000;
        text-align: center;
        border-bottom: 1px solid #dddddd;
    }

    .styled-table th {
        padding: 5px 10px;
        background-color: #f3f3f3;
        position: sticky;
        z-index: 0;
        top: 0;
    }

.Normalth {
}

.Fixedth {
    position: fixed;
    top: 72px;
}

.styled-table th:first-child {
    position: sticky;
    right: 0;
    background-color: #f3f3f3;
    z-index: 1;
}

.styled-table td {
    padding: 5px 10px;
    border: none;
}

    .styled-table td:first-child {
        position: sticky;
        right: 0;
        background-color: #f3f3f3;
    }

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

    .styled-table tbody tr:nth-of-type(odd) td {
        background-color: #f3f3f3;
        color: #2020a9;
    }

    .styled-table tbody tr.active-row {
        font-weight: bold;
        color: #009879;
    }

#MyChart {
    height: 100vh;
    width: 100vw;
}

.table-responsive {
    height: 310px;
}


.btn-UpDown {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem 0 -0.5rem -0.5rem;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #7f7f7f;
    background-color: #FFFFFF;
    border: none;
}

.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem 0 -0.5rem -0.5rem;
}
@media (min-width: 100px) and (max-width: 768px) {
    .header_Right .Header_Logo {
        margin-right: 88px;
        width: 180px;
        height: 40px;
    }
}





/* فایل CSS شما */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

