﻿/* 우측 상단 버튼 컨테이너 */
.top-buttons {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 10px;
    font-size: 24px;
    align-items: center;
}

.top-buttons .top-icon-form {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

    .top-buttons a,
    .top-buttons .top-icon-btn {
        text-decoration: none;
        color: black;
        background-color: #f5f5f5;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 3px rgba(0,0,0,0.2);
        transition: background-color 0.2s ease;
        border: none;
        cursor: pointer;
        font: inherit;
        font-size: 24px;
        line-height: 1;
        margin: 0;
        box-sizing: border-box;
        appearance: none;
        -webkit-appearance: none;
    }

        .top-buttons a:hover,
        .top-buttons .top-icon-btn:hover {
            background-color: #ddd;
        }

    @media print {
        .top-buttons {
            display: none !important;
        }
    }
