.dpl-container {
    display: flex;
    height: 600px; /* Adjust height as needed */
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.dpl-sidebar {
    width: 300px;
    border-right: 1px solid #ccc;
    padding: 20px;
    background: #f9f9f9;
    overflow-y: auto;
}

.dpl-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dpl-sidebar li {
    margin-bottom: 12px;
}

.dpl-sidebar a {
    background-color: #69727d;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    fill: #fff;
    text-align: center;
    transition: all .3s;
}

.dpl-sidebar a:hover {
    text-decoration: underline;
}

.dpl-content {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background: #ffffff;
}

/* Scrollbar styling for content area */
.dpl-content::-webkit-scrollbar {
    width: 8px;
}

.dpl-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dpl-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.dpl-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}