<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Clients */
.sidebar {
    width: 250px;
    border-right: 1px solid #ddd;
    background: #f8f9fa;
}

.sidebar h2,
.menu-panel h2 {
    padding: 15px;
    background: #0078d4;
    color: white;
}

.client-list {
    list-style: none;
}

.client-list li {
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.client-list li:hover,
.client-list li.active {
    background: #e5f1fb;
}

/* Options */
.menu-panel {
    width: 220px;
    border-right: 1px solid #ddd;
    background: #fff;
}

.menu-item {
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.menu-item:hover,
.menu-item.active {
    background: #e5f1fb;
}


.content-body h2 {
    margin-bottom: 15px;
    color: #0078d4;
}

.content-body h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-body ol,
.content-body ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-body li {
    margin-bottom: 8px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.info-table th {
    width: 200px;
    background: #f5f5f5;
}

.issue {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #0078d4;
    background: #f8f9fa;
    border-radius: 4px;
}


</style>
