.power-calculator {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.appliance-list {
    display: grid;
    gap: 10px;
}

.appliance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appliance-item input {
    width: 60px;
}

.results {
    margin-top: 20px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.total-power {
    font-weight: bold;
}

.recommended-inverter {
    margin-top: 10px;
}