/* Initialisation */

* {
    margin: 0;
    padding: 0;
}

body {
    overflow-y: hidden;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

:root {
    /* Colors: */
    --out-of-order: #e7736d;
    --available: #bababa;
    --charging: #59c09b;
    --occupied: #e5ca66;
    --unnamed-color-beddd9: #beddd9;
    --unnamed-color-285e61: #285e61;
    --unnamed-color-53504c: #53504c;
    --unnamed-color-3c3b3a: #3c3b3a;
    --unnamed-color-4fb792: #4fb792;
    --unnamed-color-f7fafc: #f7fafc;
    --editable-texbox-color: #94d6b8;
    --unnamed-color-85baca: #85baca;
    --graph-percent-jan: 0px;
    --graph-percent-feb: 0px;
    --graph-percent-mar: 0px;
    --graph-percent-apr: 0px;
    --graph-percent-may: 0px;
    --graph-percent-jun: 0px;
    --graph-percent-jul: 0px;
    --graph-percent-aug: 0px;
    --graph-percent-sep: 0px;
    --graph-percent-oct: 0px;
    --graph-percent-nov: 0px;
    --graph-percent-dec: 0px;
}

/* Reset apple form styles */
/* form,
input,
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    background-image: none;
} */

input[type="submit"] {
    border-radius: 0;
}

input[type="submit"],
input[type="date"],
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}

a:hover {
    text-decoration: none;
}

a {
    text-decoration: none !important;
}
