
/* 상담 버튼02 */
.btn-status_02 {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.btn-status_02.available {
    background: #FF4C73;
    color: #fff;
}
.btn-status_02.available:active {
    background: #e63e63;
    transform: scale(0.97);
}
.btn-status_02.busy {
    background: #fff3cd;
    color: #856404;
}
.btn-status_02.offline {
    background: #f0f0f0;
    color: #999;
}

@media (min-width: 768px) {
    .btn-status_02 { padding: 10px 24px; font-size: 0.9rem; }
}
