/* IIST Custom Search Styles */
.iist-search-wrapper {
  width: 100%;
}

.iist-search-wrapper .iist-search-form {
  width: 100%;
  margin: 0;
}

.iist-search-wrapper .input-group {
  width: 100%;
  display: flex;
}

.iist-search-wrapper .form-control {
  border-radius: 0.375rem 0 0 0.375rem;
  border: 1px solid #ced4da;
  flex: 1;
}

.iist-search-wrapper .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.iist-search-wrapper .input-group-text {
  border-radius: 0 0.375rem 0.375rem 0;
  background-color: #0d6efd;
  color: white;
  border: 1px solid #0d6efd;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  padding: 0.375rem 0.75rem;
}

.iist-search-wrapper .input-group-text:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
}

.iist-search-wrapper .input-group-text i {
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .iist-search-wrapper .form-control {
    font-size: 14px;
  }
  
  .iist-search-wrapper .input-group-text {
    padding: 0.375rem 0.5rem;
  }
}

/* Search results page styling */
.search-results .search-result {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.search-results .search-result:last-child {
  border-bottom: none;
}

.search-results .search-result h3 {
  margin-bottom: 0.5rem;
}

.search-results .search-result h3 a {
  color: #0d6efd;
  text-decoration: none;
}

.search-results .search-result h3 a:hover {
  text-decoration: underline;
}

.search-results .search-snippet {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.search-results .search-info {
  font-size: 0.875rem;
  color: #28a745;
}
