body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #d4d4d4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100vh;
    padding: 20px;
}

header {
    background-color: #000;
    width: 100%;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
    color: white;
}

#total-connected {
    margin: 20px;
    font-size: 18px;
    color: #d4d4d4;
}

.clients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
}

.client {
    background-color: #252526;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.client-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #4ec9b0;
}

.client-id {
    word-wrap: break-word;
    text-align: center;
    max-width: 150px;
}
