/* 통합검색 css */

/* 검색 결과 네비게이션 스타일 */
.scnu-search-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.scnu-search-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.scnu-search-nav-item:hover {
  background: #e3f2fd;
  border-color: #2196f3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.scnu-nav-title {
  font-weight: 600;
  color: #333;
}

.scnu-nav-count {
  color: #666;
  font-size: 0.9em;
}

/* 검색 섹션 스타일 */
.scnu-search-section {
  margin-bottom: 40px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.scnu-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.scnu-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.scnu-section-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.scnu-section-count {
  color: #666;
  font-size: 1rem;
}

.scnu-more-link {
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.scnu-more-link:hover {
  color: #1976d2;
  text-decoration: underline;
}

/* 검색 섹션 스타일 */
.scnu-search-section {
  margin-bottom: 25px;
}

.scnu-search-section:last-of-type {
  margin-bottom: 0;
}

.scnu-search-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  display: block;
}

.scnu-search-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scnu-option-btn {
  position: relative;
  cursor: pointer;
}

.scnu-option-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scnu-option-text {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: white;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.scnu-option-btn input[type="radio"]:checked+.scnu-option-text {
  background: #1884fc;
  color: white;
  border-color: #1884fc;
}

.scnu-option-btn:hover .scnu-option-text {
  border-color: #1884fc;
  color: #1884fc;
}

.scnu-search-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.scnu-search-input-field {
  flex: 1;
  max-width: 500px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
}

.scnu-search-input-field:focus {
  outline: none;
  border-color: #1884fc;
  box-shadow: 0 0 0 2px rgba(24, 132, 252, 0.1);
}


.scnu-reset-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.scnu-reset-btn:hover {
  background: #f8f9fa;
  border-color: #1884fc;
  color: #1884fc;
}

.scnu-search-btn {
  padding: 10px 24px;
  background: #1884fc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.scnu-search-btn:hover {
  background: #0d6efd;
}

.scnu-category-filter {
  font-size: 0.9em;
  color: #666;
  font-weight: normal;
}

/* 검색 가이드 스타일 */
.scnu-search-guide {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 40px 30px;
  margin: 30px 0;
  text-align: center;
  border: 1px solid #dee2e6;
}

.scnu-guide-content {
  max-width: 800px;
  margin: 0 auto;
}

.scnu-guide-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.scnu-guide-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.scnu-guide-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.scnu-guide-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.scnu-guide-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 150px;
}

.scnu-guide-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.scnu-feature-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}