@media screen and (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
}

.filter-container {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    overflow-x: auto;
    white-space: nowrap;
}

.filter-container input,
.filter-container select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    min-width: 180px;
    flex-shrink: 1;
    margin: 0px 0px;
}

.filter-container button {
    padding: 8px 12px;
    border: 1px solid #007BFF;
    background-color: #007BFF;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 2px;
}

.scroll-container {
    position: relative;
    overflow-y: auto;
    max-height: 500px; /* Adjust as necessary */
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
}

.overlay.visible {
    display: flex;
}

.table-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #007BFF;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.filter-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Webkit browsers */
}

.filter-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.filter-wrapper label {
    padding-left: 0px;
    font-size: 10px;
}
