body, html {
    font-family: Arial, Helvetica, sans-serif;
}

/* control-bar.css */

.control-bar {
    position: fixed !important;
    top: 48px !important; /* Position below navigation bar */
    left: 0;
    right: 0;
    height: 60px;
    background-color: #dbdbdb;
    border-bottom: 2px solid #979a9c;
    z-index: 1001;
    display: none;
    align-items: center;
    padding: 0 1rem;
}

.control-bar.visible {
    display: flex !important;
}

.control-bar-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-bar-section.left {
    margin-right: auto;
}

.control-bar-section.center {
    flex: 1;
    justify-content: center;
}

.control-bar-section.right {
    margin-left: auto;
}

.control-bar button {
    padding: 8px 16px;
    background-color: white;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-bar button:hover {
    background-color: #f8f9fa;
}

.control-bar button.active {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

/* Filter dropdown styles */
.filter-dropdown {
    min-width: 200px;
    position: relative;
}

.control-bar-section.right .filter-dropdown {
    margin-left: auto;
}