﻿<style >
/* 모든 info-icon을 강제로 표시 */
.info-icon {
    display: inline !important;
    position: relative;
    margin-left: 4px;
    color: #007bff;
    cursor: help;
    font-size: 0.75rem;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .form-group label {
        font-weight: 600;
        font-size: 0.9rem;
    }

    .form-group input {
        width: 200px;
    }

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

    .back-button:hover {
        background: #667eea;
        color: white;
        transform: translateX(-4px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

.dark-mode .back-button {
    background: #1a1a2e;
    border-color: #667eea;
    color: #8ab4f8;
}

    .dark-mode .back-button:hover {
        background: #667eea;
        color: white;
    }

</style >
