/* Updated styles for UserList component */

.user-list {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.user-list h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

.user-list ul {
    list-style-type: none;
    padding: 0;
}

.user-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    color: #555;
    transition: background-color 0.3s ease;
}

.user-list li:hover {
    background-color: #f0f0f0;
}

.skeleton-loader {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.skeleton-header {
    width: 100%;
    height: 24px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 16px;
}

.skeleton-item {
    width: 100%;
    height: 18px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .user-list {
        padding: 15px;
    }

    .user-list h1 {
        font-size: 20px;
    }

    .user-list li {
        font-size: 16px;
    }

    .skeleton-loader {
        padding: 15px;
    }

    .skeleton-header {
        height: 20px;
    }

    .skeleton-item {
        height: 16px;
    }
}