html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.wind-direction-s:before {
    transform: rotate(0deg);
}

.wind-direction-sw:before {
    transform: rotate(45deg);
}

.wind-direction-w:before {
    transform: rotate(90deg);
}

.wind-direction-nw:before {
    transform: rotate(135deg);
}

.wind-direction-n:before {
    transform: rotate(180deg);
}

.wind-direction-ne:before {
    transform: rotate(225deg);
}

.wind-direction-e:before {
    transform: rotate(270deg);
}

.wind-direction-se:before {
    transform: rotate(315deg);
}

.wind-direction-unknown:before {
    transform: rotate(0deg);
}

.line {
    position: absolute;
    border-right: 1px solid #000;
    z-index: 1;
    height: 400px;
    display: block;
    width: 2px;
}

.weather-container {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}

table {    
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.8);
}

table thead th {
    font-size: 26px;    
}
table tbody td {
    font-size: 22px;
}

.temp-chart, .rain-chart {    
    width: 100%;
    overflow:visible;
}
.temp-chart {
    margin:  0 0px;
    padding:0 50px; 
}
.rain-chart {
    margin: 0 0px;    
}

h1 img {
    max-height: 50px;
    border-radius: 15px;
}
