body {
    background-color: #081c24;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px; 
    height: auto; 
}
.logo2 {
    position: absolute;
    top: 10px;
    right: 10px;  
    width: 150px; 
    height: auto; 
}
.footer {
    color: white;         
    text-align: center;   
    padding: 1px 0;      
    position: absolute;  
    width: 100%;    
    bottom: 1;    
}
.container {
    max-width: 950px;
    margin: 20px auto;
    background-color: #1f4257;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    font-size: 24px;
}

form {
    margin-top: 15px;
}

.devices-container {
    display: flex;
    flex-wrap: wrap;
}

.device-entry {
    margin-right: 10px;
    margin-bottom: 15px;
    flex: 1 0 30%;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

input[type="number"],
select {
    width: calc(100% - 12px);
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}

button {
    padding: 8px 16px;
    background-color: #4caf50;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    margin-top: 8px;
    width: calc(100% - 10px);
}

button.remove-device {
    background-color: #d32f2f;
}

button:hover {
    background-color: #45a049;
}

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

#ups-load-container, #ups-autonomy-container {
    margin-top: 15px;
}

#equipment-list {
    padding-left: 15px;
}

#equipment-list li {
    margin-bottom: 5px;
}
