* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FBFAF9; /* Light gray background */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 100%; /* Adjust the maximum width as needed */
  /*  margin: 5px; */
  /*  padding: 10px; */
}

header {
   /* background-color: #333;*/
    color: #FBFAF9;
    text-align: center;
   /* padding: 1px; */
   /* margin-bottom: 4px;*/
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

form {
    background-color: #FBFAF9;
    padding: 5px;
    border-radius: 5px;
   /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
    position: relative;
}

input[type="text"] {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #4CAF50; /* Green color on focus */
    outline: none;
    font-size: 18px;
}

button {
    padding: 12px 25px;
    font-size: 1.1rem;
    background-color: #4CAF50; /* Green color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.small-btn {
    font-size: 1rem; /* Smaller font size */
    padding: 10px 20px; /* Smaller padding */
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

.answer {
    background-color: #FBFAF9;
    padding: 10px;
    padding-left: 34px;
    border-radius: 5px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
    /* margin-top: 15px */	 
    font-family:'Roboto', sans-serif;
    font-size: 18px; /* Increased font size for better readability */
    line-height: 1.9; /* Increased line height for better readability */
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

#loading {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #555;
}

#loading i {
    margin-right: 5px;
}

.autocomplete-suggestions {
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    z-index: 9999;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.autocomplete-suggestion {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}

.autocomplete-suggestion:last-child {
    border-bottom: none;
}

.autocomplete-suggestion:hover {
    background: #f0f0f0;
}
#suggestions {
    position: relative;
}

.small-btn {
    display: block;
    width: 130px;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    background-color: #4CAF50; /* Green color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.small-btn:hover {
    background-color: #45a049;
}

.autocomplete-suggestions {
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    z-index: 9999;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none; /* Initially hidden */
}

.autocomplete-suggestion {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}

.autocomplete-suggestion:last-child {
    border-bottom: none;
}

.autocomplete-suggestion:hover {
    background: #f0f0f0;
}

input[type="text"] {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #4CAF50; /* Green color on focus */
    outline: none;
}

.loading-icon {
    color: red;
    font-size: 1.5rem;
    text-align: center;
    padding: 15px 0;
}

.hidden {
    display: none;
}

.no-results-found {
    padding: 12px 15px; /* Padding for the text box */
    font-size: 1rem; /* Font size */
    margin-bottom: 10px; /* Margin bottom */
}
