html, body {
    font-family: sans-serif;
}

main{
    margin: auto;
    max-width: 800px;
}

.peer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.peer-button {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 16px;
    border-radius: 8px;

    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;

    transition: background-color 0.2s ease, transform 0.1s ease;
}

.peer-button:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.peer-host {
    font-weight: 600;
}

.peer-ip {
    font-size: 14px;
    opacity: 0.7;
}