#aimd-search-form {
    margin: 15px;
	margin: 0 10%;
}

.aimd-wrapper {
   padding-bottom: 50px;
    border-radius: 12px;
    max-width: 600px;
    margin: 10px auto;
}
.aimd-wrapper input,
.aimd-wrapper button {
    display: block;
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size:15px ;
}
.aimd-wrapper button {
    background-color: #0073aa;
    color: white;
    cursor: pointer;
}
.aimd-wrapper table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}
.aimd-wrapper th, .aimd-wrapper td {
    border: 1px solid #ddd;
    padding: 8px;
}

.aimd-group {
  position: relative;
  margin-bottom: 10px;
}
.aimd-suggestions {
  position: absolute;
  background: #ddd;
  border: 1px solid #ccc;
  max-height: 350px;
  overflow-y: auto;
  z-index: 1000;
}
.aimd-suggestions div {
  padding: 5px;
  cursor: pointer;
  background-color: #f1f19b;
}
.aimd-suggestions div:hover {
  background-color: #f0f0f0;
}
.aimd-actions {
  display: flex;
  gap: 10px;
}
#aimd-loader {
  font-weight: bold;
  margin: 10px 0;
  color: #0073aa;
}

#aimd-results table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #f9f9f9;
    font-size: 15px;
}

#aimd-results th {
    background-color: #e0e0e0;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #ccc;
    text-transform: uppercase;
}



#aimd-results td {
    padding: 8px;
    border: 1px solid #ccc;
    text-transform: uppercase;
}

#aimd-results td:first-child {
    font-weight: 600;
    width: 30%;
    background-color: #fcfcfc;
}
