
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.connection-list {
    max-width: 820px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.connection-item {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.connection-name {
    font-weight: bold;
    color: #444;
    display: flex;
    align-items: center;
}

.connection-name i {
    margin-right: 10px;
    font-size: 20px;
}

.button {
    padding: 8px 12px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, opacity 0.2s;
}

.web-button {
    background-color: #4CAF50;
    color: white;
}

.client-button {
    background-color: #008CBA;
    color: white;
}

.start-button {
    background-color: #7c3aed;
    color: white;
}

.reboot-button {
    background-color: #ef4444;
    color: white;
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button:hover:not(:disabled) {
    opacity: 0.9;
}

.action-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.status-line {
    font-size: 12px;
    color: #555;
    grid-column: 1 / -1;
}
