
/* Device Search Styles */

/* Import shared styles */
@import '../../shared/variables.css';
@import '../../shared/components.css';
@import '../../shared/utilities.css';
@import '../../shared/base.css';

.device-search-wrapper {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Nunito', sans-serif;
}

.device-search-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.device-search-subtitle {
  font-size: 1rem;
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.device-search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

#device-search-input {
  width: 100%;
  max-width: 600px;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
}

#device-search-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.device-search-results {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.device-search-item {
  padding: 10px 14px;
  border-bottom: 1px solid #f1f1f1;
}

.device-search-item:nth-child(odd) {
  background-color: #fafafa;
}

.device-search-empty,
.device-search-error {
  text-align: center;
  color: #888;
  padding: 20px 0;
}
