@charset "UTF-8";

.btn-small {
    font-size: .9rem;
    font-family: "NanumSquareRound", sans-serif;
    padding: 2px 10px;
    border: 1px solid #43270F;
    transition: background-color 0.2s ease, color 0.2s ease;
    background-color: #5A371E;
    color: #FFFFFF !important;
    &.outline {
        background-color: transparent;
        color: #43270F !important;
    }
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 6px;
    gap: 5px;
}

.page-header {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    max-width: 1400px;
    background: #FF6371;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    .header-left,
    .header-right {
        display: flex;
        align-items: center;
    }
    .header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        max-width: 60%; /* 양쪽 여백 확보 */
    }
}

.btn-header-icon {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    /* 텍스트 숨기기 (접근성 O) */
    color: transparent !important;
    overflow: hidden;
    white-space: nowrap;
    text-indent: -9999px;
    &.btn-header-back {
        background-image: url('../landscape/img/icon-pagePrev.png');
    }
    &.btn-header-close {
        background-image: url('../_images/icon_close_white.svg');
    }
    &.btn-header-tutorial {
        background-image: url('../_images/icon-tutorial.png');
    }
}
