.clients-section {
    padding: 1em;
    max-height: 100%;
    overflow-y: scroll;
    border-radius: 1em;
}

.clients-section:first-of-type {
    padding: 1em 1em 0 1em;
    max-height: 100%;
    overflow-y: scroll;
    border-radius: 1em;
}

#client-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.75rem;
}

#client-list .client-item {
    padding: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

#client-list .client-item:hover {
    transform: translateY(-1px);
    border-color: #d1d5db;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
}

#client-list .client-item:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

#client-list .client-item:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}