/* VChat 공통 스타일 */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Bootstrap 모달 보정 */
.modal-backdrop {
    z-index: 1040 !important;
}
.modal {
    z-index: 1050 !important;
}
.modal.show {
    display: block !important;
}

.form-label-required::after {
    content: ' *';
    color: #dc3545;
}
