/* option button area*/

.option-button-area{
    position: fixed;
    bottom: 20px;
    width: 100%;
    
    display: flex;
    justify-content: center;
    gap: 15px;

    user-select: none; /* 텍스트 선택 차단 */
}

.print-template-option-button{
    background-color: #163777;
    padding: 10px;

    width: fit-content;
    height: fit-content;

    border: none;
    border-radius: 15px;

    box-shadow: 0px 3px 2px 1px gray;
}
.print-template-option-button:hover{
    background-color: #0b5ed7;
}


@media print {
    .no-print{
        display: none;
    }
}
