.user-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
    border: 3px solid #ff0000;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.user-card:hover {
    transform: translateX(5px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: #600000;
    border: 3px solid #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.user-info {
    flex: 1;
    color: #fff;
}

.user-info h3 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 24px;
}

.user-info p {
    margin: 5px 0;
    color: #ddd;
    font-size: 14px;
}

.user-actions button {
    background: #0070dd;
    padding: 12px 25px;
    white-space: nowrap;
}

.user-actions button:hover {
    background: #0090ff;
}