#device-list {
    list-style-type: none;
}

#device-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#device-list li:hover {
    background-color: #f5f5f5;
}

.Connected-Devices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.device-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.device-name {
    font-size: 0.9em;
    color: #333;
    flex-grow: 1;
}

.device-info {
    color: #007bff;
    cursor: pointer;
    margin-left: 10px;
}

.device-info:hover {
    color: #0056b3;
}

.device-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.device-info-item {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 4px;
    font-size: 13px;
}

.device-info-label {
    color: #666;
    font-size: 11px;
    margin-bottom: 4px;
}

.device-info-value {
    color: #2c3e50;
    font-weight: 500;
}
