body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fb;
}

.dashboard {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.branding {
    width: 30%;
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid #e2e2e2;
}

.branding img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.branding h1 {
    margin: 10px 0;
    font-size: 24px;
    color: #333;
}

.logout-link {
    display: inline-block;
    margin-top: 20px;
    color: #777;
    font-size: 14px;
    text-decoration: underline;
}

.customer-list {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.button {
    background-color: #5c6bc0;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.button:hover {
    background-color: #3f51b5;
}

.customer-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.customer-card h3 {
    margin: 0 0 10px;
}

.customer-card p {
    margin: 5px 0;
}

.customer-card .actions {
    margin-top: 10px;
}

.customer-card .actions a {
    margin-right: 10px;
    text-decoration: none;
    color: #5c6bc0;
    font-weight: bold;
}

.customer-card .actions a:hover {
    text-decoration: underline;
}
