.wpcbs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important; /* 下線を強制的に非表示 */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.wpcbs-button:hover {
    text-decoration: none !important; /* ホバー時も下線を非表示 */
}
.wpcbs-button .dashicons {
    margin-right: 5px;
    font-size: inherit; /* アイコンサイズを親のフォントサイズに連動 */
    width: auto;
    height: auto;
}
@keyframes blink {
    50% { opacity: 0; }
}