.container {
    display: flex;
    min-height: calc(100vh - 60px);
    /* Adjust based on header height */
    background-color: #fff;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
}

.sidebar {
    width: 250px;
    background-color: #2C3E50;
    display: flex;
    flex-direction: column;
    border-right: 5px solid white;
    flex-shrink: 0;
}

.sidebarHeader {
    padding: 15px;
    background-color: #0088cc;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
}

.vendorList {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vendorItem {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    /* border-bottom: 1px solid #34495e; */
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

/* .vendorItem:hover {
    background-color: #34495e;
} */

.vendorItem.active {
    background-color: #0088cca5;
    color: white;
    border-left: none;
}

.mainContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.topBar {
    background-color: #5ab2de;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
    margin: 0px 5px;
}

.categoryItem {
    padding: 5px 20px;
    cursor: pointer;
    /* color: rgba(255, 255, 255, 0.8); */
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.2s, background-color 0.2s;
}

.categoryItem:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.categoryItem.active {
    color: white;
    background-color: #0088cc;
    /* Darker shade of blue */
    font-weight: bold;
}

.contentArea {
    padding: 10px 0px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: none;
        background-color: #34495e;
        /* Dark background */
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sidebar::-webkit-scrollbar {
        display: none;
    }

    .sidebarHeader {
        display: none;
    }

    .vendorList {
        flex-direction: row;
        width: max-content;
    }

    .vendorItem {
        padding: 12px 15px;
        white-space: nowrap;
        border-bottom: none;
        border-right: 1px solid #2c3e50;
        font-size: 13px;
        font-weight: bold;
        text-transform: uppercase;
        color: #fff;
        background-color: #34495e;
    }

    .vendorItem.active {
        background-color: #0088cca5;
        color: white;
        border-left: none;
        border-bottom: none;
    }

    .topBar {
        overflow-x: auto;
        background-color: #5dade2;
        /* Lighter blue */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0px 0px;
    }

    .topBar::-webkit-scrollbar {
        display: none;
    }

    .categoryItem {
        padding: 10px 15px;
        font-size: 12px;
        font-weight: bold;
        text-transform: uppercase;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        background-color: #5dade2;
    }

    .categoryItem.active {
        background-color: #0088cc;
        /* Match vendor active color */
        color: white;
    }

    .contentArea {
        padding: 10px 5px;
        background-color: #ecf0f1;
        /* Light background for content */
    }
}