.search-results {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}

.search-results p {
  margin: 5px 0;
}

.excel-search-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.excel-search-wrapper input {
    box-sizing: border-box;
    border: none;
    outline: none;
}

.excel-search-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
            flex-wrap: nowrap;
            align-items: stretch;
            height: 34px;
}

.excel-search-button {
    height: 100%;
    width: 40px;
    padding: 0;
    border: none;
    background-color: #fcc222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.excel-search-button svg {
    color: #007bff;
}

.excel-search-result {
  font-size: 21px !important;
    height: 100%;
    border: none;
    padding: 0 5px;
    background-color: transparent;
    width: 120px; /* Adjust as needed */
}

.excel-search-results {
    margin-top: 5px;
    padding-right: 80px;
    width: 100%;
    box-sizing: border-box;
    border: none;

    outline: none;

}

.excel-search-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.parsley-required {
  padding-left: 0.5em;
}

.excel-search-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.excel-search-modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.excel-search-modal-header {
  margin-bottom: 20px;
}

.excel-search-modal-body {
  margin-bottom: 20px;
}

.excel-search-modal-footer {
  text-align: right;
  display: flex;
  flex-wrap: nowrap;
}

.result-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;

}

.result-explanation {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.result-choice-button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.3em;
}

.result-choice-button.selected {
  background-color: #007cba;
  color: #fff;
}

.cancel-button,
.confirm-button {
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  border: 0px solid transparent;
  display: block;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-style: normal;
}

.cancel-button {
  background-color: #ccc;
}

.confirm-button {
  background-color: #007cba;
  color: #fff;
}

.confirm-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
