/* General Styling */
body {
    background-color: #f8f9fa;
    font-family: 'Helvetica', sans-serif;
}

h1, h4, h5 {
    color: #343a40;
}

/* Container Styling */
.container {
    background-color: #ffffff;
    border: 2px solid #ced4da;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* Language Switch Container Styling */
.lang-container {
    margin-bottom: 40px;
}

/* Temperature Switch Container Styling */
.temp-container {
    margin-top: 40px;
}

/* Input Container */
.InfoContainer, .LocationContainer, .InputContainer, .TIK, .AdviesContainer {
    background-color: #ffffff;
    border: 2px solid #ced4da;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* Input Styling */
input.form-control {
    font-size: 1rem;
    border-radius: 5px;
    padding: 10px;
}

/* Button Styling */
button.btn-primary, button.btn-secondary {
    background-color: #007bff;
    border-color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    .form-control {
        font-size: 0.9rem;
    }

    button.btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Center Image */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    margin-top: 30px;
}

/* Switch Styling for Language and Temperature Switches */

/* General Switch Styling */
.switch-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between icons and switch */
    margin-top: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Switch Icon Styling */
.switch-icon {
    width: 30px;
    height: 30px;
}

/* Language Switch Specific Styles */
.lang-switch-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between language icons and switch */
    margin-bottom: 20px;
}

/* Temperature Switch Specific Styles */
.temp-switch-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between temperature icons and switch */
    margin-top: 20px;
}

