/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f4f8;
    padding: 20px;
    color: #333;
}

input#userCount {
    padding: 10px 15px;
    font-size: 16px;
    width: 200px;
    border: 2px solid #0077cc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

input#userCount:focus {
    border-color: #005fa3;
}

button#LodeUser {
    padding: 10px 20px;
    margin-left: 10px;
    font-size: 16px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button#LodeUser:hover {
    background-color: #005fa3;
}

#users {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user {
    background-color: white;
    padding: 15px 20px;
    border-left: 5px solid royalblue;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: 600;
    color: royalblue;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.user button {
    background-color: #004a99;
    color: white;
    border: none;
    padding: 7px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.user button:hover {
    background-color: #003366;
}

#userDetail {
    margin-top: 40px;
    background-color: white;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 400px;
}

#userDetail h1 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 10px;
}

#userDetail h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0077cc;
}

#userDetail p {
    font-size: 16px;
    color: #555;
}
