/* ============================================
   검색 영역 스타일
   ============================================ */
.search-area {
	width:480px;
	margin-bottom:30px;
    /* background: #f8f9fa; */
    /* border-radius: 12px; */
    padding: 10px 10px;
    /* border: 1px solid #e9ecef; */
}

/* 검색 바 */
.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    font-size: 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #00A73C;
    box-shadow: 0 0 0 3px rgba(0, 167, 60, 0.1);
}

.search-input::placeholder {
    color: #adb5bd;
}

.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #00A73C;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-button:hover {
    background: #008F33;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 167, 60, 0.3);
}

.search-button:active {
    transform: translateY(0);
}

.search-button svg {
    width: 20px;
    height: 20px;
}

/* 결과 정보 */
.results-info {
    margin-left: auto;
}

.total-count {
    font-size: 15px;
    color: #6c757d;
}

.total-count strong {
    font-size: 18px;
    font-weight: 700;
    color: #00A73C;
    margin: 0 4px;
}