/* Globální definice stylů se píší sem */

/* Include W3.CSS */
@import url('https://www.w3schools.com/w3css/4/w3.css');



.weather-card {
    width: 100%; /* Use 100% of the container width */
    display: flex;
    justify-content: center; /* Center the weather card */
    overflow-x: auto; /* Allow horizontal scrolling if needed */
    margin: 0 auto; /* Center the weather card */
    flex-wrap: nowrap; /* Prevent wrapping */
}
.weather-forecast {
    flex: 0 0 19%; /* Adjust width to fit 5 forecasts within 100% */
    box-sizing: border-box;
    text-align: center; /* Center align text */
}
.weather-forecast img {
    display: block;
    margin: 0 auto; /* Center align image */
}
.weather-forecast h4 {
    margin: 0; /* Remove margin from headers */
}
.weather-forecast p {
    margin: 0; /* Remove margin from paragraphs */
}
.active-order, .weight, .orders {
    width: 100%;
}
.half-width {
    width: 50%;
}
.w3-row-padding > .w3-half {
    padding: 0 8px;
}

.holidays {
    margin-top: 20px;
    padding: 10px;
    background-color: #f1f1f1;
    border-left: 5px solid #2196F3;
    border-radius: 5px;
    font-weight: bold; /* Bold text */
    font-size: 1.2em; /* Larger font size */
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}
.notification.success {
    background-color: #4CAF50;
}
.notification.error {
    background-color: #f44336;
}
.notification.show {
    opacity: 1;
}

