html, body, #map {
    height: 100%;
    width: 100%;
    margin: 0;
    line-height: 1.2 !important;
    color: rgb(213, 209, 203)
}

#map {
    background-color: white !important;
}

#side {
    padding: 10px;
    background-color: rgb(28, 31, 32);
    overflow-y: auto;
    height: 100%;
    border-right: 1px solid rgb(59, 63, 66);
}

.appliance-card {
    background: rgb(24, 27, 28);
    border: 1px solid rgb(121, 113, 100);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.appliance-card.in-station {
    background: rgb(21, 50, 31); /* Light green for "In Station" */
    border-left: 5px solid rgb(55, 128, 58); /* Green border */
}

.appliance-in-station {
    font-size: 14px;
    color: rgb(99, 190, 103); /* Green text */
    margin: 5px 0;
}

.appliance-title {
    font-size: 1.2em;
    color: rgb(200, 195, 187);
    margin-bottom: 5px;
}

.appliance-updated,
.appliance-location,
.appliance-wifi {
    font-size: 0.9em;
    color: rgb(176, 169, 158);
    margin-bottom: 5px;
}

.appliance-battery {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: rgb(171, 163, 152);
}

.battery-icon {
    width: 30px;
    height: 12px;
    border: 1px solid #666;
    border-radius: 2px;
    margin-right: 5px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.battery-icon:before {
    content: '';
    width: 4px;
    height: 6px;
    background-color: #666;
    position: absolute;
    right: -4px;
    top: 3px;
    border-radius: 1px;
}

.battery-level {
    height: 100%;
    transition: width 0.3s;
}
