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

.navigation-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: linear-gradient(to right, #0d3b69, #2c70b4);
    border-bottom: 2px solid #74b5f7;
    font-family: Arial, sans-serif;
    height: 32px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.breadcrumb-container {
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    padding: 4px 8px;
    font-size: 14px;
    color: #495057;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.breadcrumb-item.clickable {
    color: #cae4ff;
    cursor: pointer;
    transition: color 0.2s;
}

.breadcrumb-item.clickable:hover {
    color: #4d89c9;
    text-decoration: underline;
}

.breadcrumb-item.current {
    font-weight: bold;
    color: #eceef0;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #d7ecff;
    font-size: 14px;
    font-weight: bold;
}




/* Adjust other elements to account for navigation bar */

.filter-container {
    top: 48px !important; /*32px + 16px (for padding)*/
}

#infiniteCanvas {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
}

.activity-toggle {
    top: calc(100px + 32px) !important; /* Adjusted for nav height + control bar height */
}

/* Project editor view adjustments */
#projectEditor {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 45px; /* Space for nav + control bar*/
}

/* My Space view adjustments */
.my-space {
    padding-top: 32px;
}