:root {
    --sidebar-width: 350px;
    --color-list-item-highlited: #b2b2b257;
    --light-primary: #ffbc62;
    --light: #f0f0f0 !important;
    --footer-height: 42px;
    --primary: #eb9e35;
}

body {
    background-size: cover;
}

rpb-container {
    height: calc(100vh - 65px);
    display: flex;
}

rpb-content {
    flex: 1;
    overflow: auto;
    padding-bottom: var(--footer-height);
}
.pointer{
    cursor: pointer !important;
}


.list-item {
    color: black !important;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
    padding: 16px;
    cursor: pointer;
}

.list-item:hover {
    background-color: var(--color-list-item-highlited);
}

.list-item.active {
    background-color: var(--light-primary);
}

.status {
    color: var(--success);
    font-size: .875rem;
    float: right;
}

.title {
    color: var(--dark);
    font-weight: normal;
    line-height: 1.5rem;
}

.author {
    font-size: .875rem;
    color: var(--secondary);
}

.date {
    font-size: .875rem;
    color: var(--secondary);
}



#sidebar {
    width: var(--sidebar-width);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: visible;
    position: relative;
    background: #fff;
    transition: .3s;
    border-right: 1px solid #ebebeb;
    z-index: 10;
}

#sidebar.collapsed {
    margin-left: calc(var(--sidebar-width) * -1) !important;
}

#sidebar #sidebarCollapse {
    position: absolute;
    margin: 8px;
    top: 0;
    left: 100%;
}

#sidebar .sidebar-header {
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 20px;
    border-bottom: 1px solid black;
}

#sidebar .content {
    overflow: auto;
    flex: 1;
    padding-bottom: var(--footer-height);
}