/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 20 2025 | 01:51:44 */
/* 기본 버튼 스타일 */
#gptpl-language-options label {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid #999;
    background: #fff;
    color: #555;
    cursor: pointer;
    margin: 0 4px 4px 0;
	width: auto !important;
}

/* 체크된 언어(label 박스 색상 파란색으로) */
#gptpl-language-options label:has(input:checked) {
    background: #007cba;      /* 워드프레스 기본 블루 */
    border-color: #007cba;
    color: #fff;
}

/* 체크박스 자체는 보이지 않게 (선택은 그대로 가능) */
#gptpl-language-options input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}