html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.control-label
{
    text-decoration: underline;
}
.tb-long
{
    width: 600px;
}
.tb-short
{
    width: 80px;
}

#suggestions {
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 50%; /* Adjust width based on your layout */
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000; /* Ensure it's displayed on top of other elements */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestion {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
}

    .suggestion:hover {
        background-color: #f1f1f1; /* Highlight suggestion on hover */
        color: #007bff; /* Change text color on hover */
    }

    .suggestion:last-child {
        border-bottom: none; /* Remove border from the last suggestion */
    }
