.content__title {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 1rem;
}

.content__title h2 {
  font-size: 2.5rem;
  color: #2d3748;
  margin: 2rem 0 1rem 0;
  line-height: 2.15rem;
}

.content__title p {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.content__symptoms {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.content__symptoms .search-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.content__symptoms .search-box .search-content {
  position: relative;
  flex: 1;
}

.content__symptoms .search-box .search-content .search-content__input {
  width: 100%;
}

.content__symptoms .search-box .search-content .search-content__data {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  margin-top: 0.25rem;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content__symptoms .search-box .search-content .search-content__data.show {
  display: block;
}

.content__symptoms .search-box .search-content .search-content__data .search-content__data-item-no-results {
  padding: 0.75rem 1.25rem;
  color: #94a3b8;
  text-align: center;
  display: none;
}

.content__symptoms .search-box .search-content .search-content__data.no-results .search-content__data-item-no-results {
  display: block;
}

.content__symptoms .search-box .search-content .search-content__data.no-results .search-content__data-option {
  display: none !important;
}

.content__symptoms .search-box .search-content .search-content__data .search-content__data-option.hidden {
  display: none;
}

.content__symptoms .search-box .search-content .search-content__data-option {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: none;
}
.content__symptoms .search-box .search-content .search-content__data-option.visible-by-query {
  display: block;
}
.content__symptoms .search-box .search-content .search-content__data-option:hover {
  background-color: #f7fafc;
}

.content__symptoms .search-box .search-content .search-content__data-option.selected {
  background-color: #667eea;
  color: white;
}

.content__symptoms .search-btn {
  padding: 1rem 1.5rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.content__symptoms .search-btn:hover {
  background: #5a67d8;
}

.content__symptoms .selected-symptoms {
  min-width: 30%;
  max-width: 100%;
  width: fit-content;
  min-height: 80px;
  padding: 0px;
  border: 2px dashed #e2e8f0;
  border-radius: 8px;
  background: #f7fafc;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
}

.content__symptoms .selected-symptoms table {
  border-collapse: collapse;
  width: 100%;
  cursor: default;
}

.content__symptoms .selected-symptoms table tr {
  background: #8880;
  transition: 0.1s linear 0.05s;
}

.content__symptoms .selected-symptoms table tr:not(:first-child):not(:last-child):hover {
  background: #8881;
  transition: 0.1s linear;
}

.content__symptoms .selected-symptoms table tr:first-child td {
  font-weight: bold;
}

.content__symptoms .selected-symptoms table tr > td {
  padding: 10px;
  border: 2px dashed #e2e8f0;
  white-space: nowrap;
  text-align: center;
}

.content__symptoms .selected-symptoms table tr:not(:first-child):not(:last-child) > td:first-child:hover {
  cursor: pointer;
  color: #f33;
}

.content__symptoms .selected-symptoms table tr > td:first-child {
  border-left: 0px solid;
  text-align: left;
}

.content__symptoms .selected-symptoms table tr:first-child > td {
  border-top: 0px solid;
}

.content__symptoms .selected-symptoms table tr > td:last-child {
  border-right: 0px solid;
}

.content__symptoms .selected-symptoms table tr:last-child > td {
  border-bottom: 0px solid;
}

.content__symptoms .selected-symptoms table tr:last-child {
  font-weight: bold;
}

.content__symptoms .selected-symptoms table tr:last-child > td:first-child {
  color: #f00;
  text-align: right;
}

.content__actions {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .content__title h2 {
    font-size: 2rem;
  }
  
  .content__symptoms .search-box {
    flex-direction: column;
  }
  
  .content__actions {
    flex-direction: column;
    gap: 0.75rem;
  }
}
