body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.radio-buttons {
    margin: 20px;
}

.radio-buttons label {
    margin-right: 10px;
}

input[type="text"] {
    width: 60%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#results {
    margin-top: 20px;
    text-align: left;
}

.info-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

/* Your existing styles... */

/* ... existing styles ... */

/* Footer styles adjustment for better responsiveness */
.footer {
    width: 100%;
    background-color: #007bff;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10; /* Ensure the footer is above other content */
}

.footer-toggle {
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    border: none;
    width: 100%;
    cursor: pointer;
}

.footer-toggle:hover {
    background-color: #003f7f;
}

.footer-content {
    background-color: #fff;
    color: #333;
    overflow: auto; /* Add scroll to the footer content */
    position: fixed; /* Fixed position */
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 50%; /* Maximum height to allow for scrolling */
    text-align: left;
    padding: 20px; /* Adjust padding as needed */
    box-sizing: border-box; /* Include padding in the width */
    display: none; /* Hidden by default */
    transition: max-height 0.3s ease; /* Animated transition for smooth opening/closing */
}

/* This class will be added via JavaScript to expand the footer */
.footer-content.open {
    display: block;
    max-height: 50%; /* Adjust max-height as needed for your design */
}

/* Ensure the .footer-toggle button is not overlapped by the content */
.footer-toggle {
    position: relative;
    z-index: 15;
}
.footer p{
    padding-bottom: 1rem;
}
.use-case-text {
    margin-top: 1rem;
    padding: 0 1rem;
    font-size: 0.9rem;
}
