* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #242729;
}

abbr{
    text-decoration: none;
}

.user-section {
    padding: 10px;
    background-color: #181a1b;
    margin: 25px auto;
    border-radius: 5px;
    width: 60%;
}

.user-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-item {
    display: flex;
    align-items: center;
    background-color: #242729;
    padding: 15px;
    border-radius: 5px;
    color: #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.user-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #2c3134; 
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-name {
    font-size: 1.2em;
    color: #00b1dd;
    margin: 0;
}

.user-email {
    font-size: 1em;
    color: #ddd;
    margin: 5px 0 0 0;
}

.delete-icon {
    margin-left: auto; 
    margin-right: 20px;
    font-size: 1.5em;
    color: #ff4d4d; 
    cursor: pointer; 
    transition: transform 0.3s ease, color 0.3s ease;
}

.delete-icon:hover {
    transform: scale(1.2); 
    color: #ff0000; 
}

@media (max-width: 600px) {
    .user-section{
        width: 95%;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .user-section{
        width: 80%;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .user-section{
        width: 70%;
    }
}

@media (min-width: 1201px) and (max-width: 1500px) {
    .user-section{
        width: 70%;
    }
}
