.persons-container {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.person-card {
    width: 200px;
    height: 80px;
    flex-shrink: 0;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: white;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}