/* General Form Styling */
body {
    font-family: 'Lato', sans-serif;
    color: #444;
    padding-top: 100px; /* Prevents header from overlapping text */
}

h2, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

@media screen and (max-width: 800px) {
    .btn-group-toggle {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .btn-group-toggle .btn {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        justify-content: center !important;
        flex: none !important;
    }
}

.container {
    max-width: 800px;
    margin: auto;
}

/* Styling for the pictographic selection buttons */


/* Remove borders from unselected buttons */
.btn-group-toggle .btn {
    padding: 15px;
    font-size: 18px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    width: 100%;
    margin-bottom: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent !important; /* Remove default Bootstrap border */
    background-color: white !important; /* Ensure unselected buttons remain white */
}

/* Change background & border when selected */
.btn-group-toggle input[type="radio"]:checked + label {
    background-color: #074f66 !important; /* Keeps background when selected */
    color: white !important;
    border-color: #074f66 !important;
}

/* Improve hover effect */
.btn-group-toggle .btn:hover {
    background-color: #0e98c5 !important;
    color: white !important;
    transform: scale(1.05);
}
/* Keep selected button outlined */
.btn-group-toggle input[type="radio"] {
    display: none;
}



/* Location Dropdown */
.form-control {
    border-radius: 10px;
    padding: 10px;
}

/* Textbox Styling */
.form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
}

/* Submit Button */
.btn-success {
    background-color: #17baef;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out;
}

.btn-success:hover {
    background-color: #0e98c5;
}