.user-cards {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    gap: 10px;
    
}

.user-card {
    min-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
}

.user-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    gap: 15px;
    padding: 10px;
    width: 100%;
}

.chinese-table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block; /* или table */
    flex-shrink: 0;
    margin: 0;
    align-self: center;
}

.chinese-row {
    display: flex;
    line-height: 1;
}

.chinese-cell {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    color: #2c3e50;
    border-radius: 4px;
}

.user-info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-grow: 1;
}

.user-info h2 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}

.user-info2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-grow: 1;
    width: 100%;
}

.detail-item {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 4px;
}

.card-actions {
    display: flex;
    gap: 8px;
}

.btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-load {
    color: #4caf50;
    border: 2px solid #4caf50;
}

.btn-load:hover {
    background: #4caf50;
    color: white;
}

.btn-edit {
    color: #4776E6;
    border: 1px solid #4776E6;
}

.btn-edit:hover {
    background: #4776E6;
    color: white;
}

.btn-delete {
    color: #db0000;
    border: 1px solid #db0000;
}

.btn-delete:hover {
    background: #db0000;
    color: white;
}