﻿.title-bar{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.title-bar > *{
    margin: 5px 30px;
}
.settings-container {
    background-color: #1e242e;
    color: white;
    width: 60%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.info-description{
    color: white;
    width: 95%;
    margin: 30px 0;
    text-align: justify;
}
.battery-settings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    margin: 15px 0;
}
.battery-settings > div{
    margin: 0 15px;
    font-size: 1.3em;
}
.device-title{
    font-size: 1.5em;
    line-height: 2em;
    font-weight: bold;
}
.device-settings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    margin: 15px 0;
}
.device-settings > div{
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
    margin: 0 5px
}
#notifications{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px 10px;
    align-items: center;
}
input[type="range"]{
    width: 80%;
}
@media (max-width: 800px) {
    #notifications{
        flex-direction: column;
    }
    .settings-container{
        width: 97%;
        padding-bottom: 20px;
    }
    input[type="range"]{
        width: 95%;
    }
}
.notification {
    display: inline-flex;
    align-items: center;
    margin: 15px;
    background-color: #208020;
    color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: -5px 5px 0px 0px #193819;
    width: fit-content;
}
.notification-icon{
    background-image: url("../Images/bell.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 35px;
    height: 35px;
}
.notification-text{
    margin: 0 5px;
    font-size: 1.2em;
}
input[type=text] {
    width: 40px;
    margin: 0;
    padding: 0;
    text-align: center;
}
input[type=range] {
  -webkit-appearance: none;
  margin: 10px 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 10px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #d9d9d9;
  border-radius: 2px;
  border: 1px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}