/* SalesDataMgr.css */
body {
    transition: background-color 0.3s ease;
}

.table {
    background-color: white;
}

.pagination {
    margin-bottom: 2rem;
}

.form-control, .form-select {
    margin-bottom: 1rem;
}

#salesTable th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 1;
}

.table-responsive {
    max-height: 500px;
    overflow-y: auto;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

.clear-button {
    margin-left: auto;
    width: 100px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.form-select, .form-control {
    margin-bottom: 1rem;
}

/* Add these styles to SalesDataMgr.css */
.filter-controls {
    display: flex;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.filters-section {
    flex-grow: 1;
}

.clear-button {
    margin-left: 1rem;
    margin-bottom: 1rem;
    height: 38px;
}

