/**
 * Joyn Chat - 프론트엔드 스타일
 */

/* 챗봇 위젯 컨테이너 */
.joyn-chat-widget {
    position: fixed;
    bottom: 300px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 배경 오버레이 */
.joyn-chat-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
}

.joyn-chat-widget.active .joyn-chat-overlay {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 토글 버튼 */
.joyn-chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1389ff 0%, #0d6efd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(19, 137, 255, 0.4);
    transition: all 0.3s ease;
    color: white;
    font-size: 24px;
    position: relative;
}

.joyn-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(19, 137, 255, 0.5);
}

.joyn-chat-toggle i {
    display: block;
}

.joyn-chat-widget.active .joyn-chat-toggle {
    display: none;
}

/* 챗봇 컨테이너 */
.joyn-chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 100px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.joyn-chat-widget.active .joyn-chat-container {
    display: flex;
}

/* 헤더 */
.joyn-chat-header {
    background: linear-gradient(135deg, #1389ff 0%, #0d6efd 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.joyn-chat-header-content {
    flex: 1;
}

.joyn-chat-title {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 600;
}

.joyn-chat-subtitle {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.joyn-chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 18px;
    padding: 0;
}

.joyn-chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 상담 유형 선택 화면 */
.joyn-chat-type-selector {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
}

.joyn-chat-type-selector-content {
    width: 100%;
    max-width: 320px;
}

.joyn-chat-type-selector-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 24px 0;
}

.joyn-chat-type-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.joyn-chat-type-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
}

.joyn-chat-type-btn:hover {
    border-color: #1389ff;
    background: #f0f7ff;
    box-shadow: 0 4px 12px rgba(19, 137, 255, 0.2);
    transform: translateY(-2px);
}

.joyn-chat-type-btn:hover .joyn-chat-type-info strong {
    color: #1389ff;
}

.joyn-chat-type-btn:hover .joyn-chat-type-info span {
    color: #333;
}

.joyn-chat-type-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1389ff 0%, #0d6efd 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.joyn-chat-type-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.joyn-chat-type-info strong {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.joyn-chat-type-info span {
    font-size: 13px;
    color: #666;
}

/* 매니저 상담 화면 */
.joyn-chat-manager {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    min-height: 0;
    height: 100%;
}

.joyn-chat-manager-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    height: 100%;
}

/* 매니저 상담 헤더 */
.joyn-chat-manager-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: linear-gradient(135deg, #1389ff 0%, #0d6efd 100%);
    color: white;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.joyn-chat-manager-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.joyn-chat-manager-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.joyn-chat-manager-header-info {
    flex: 1;
    min-width: 0;
}

.joyn-chat-manager-header-info h4 {
    margin: 0 0 4px 0;
    font-size: 17px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
}

.joyn-chat-manager-status {
    font-size: 13px;
    opacity: 0.95;
    color: white;
    display: block;
    font-weight: 400;
}

.joyn-chat-back-btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 18px;
    flex-shrink: 0;
    padding: 0;
}

.joyn-chat-back-btn-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* 매니저 상담 메시지 영역 */
.joyn-chat-manager-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    height: 100%;
}

.joyn-chat-manager-form-wrapper {
    border-top: 1px solid #e8e8e8;
    background: white;
    padding: 24px 20px;
    flex-shrink: 0;
    box-sizing: border-box;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
}

.joyn-chat-manager-form {
    width: 100%;
}

.joyn-chat-manager-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.joyn-chat-manager-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.joyn-chat-manager-field-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: -0.01em;
}

.joyn-chat-optional {
    font-weight: 400;
    color: #999;
    font-size: 12px;
}

.joyn-chat-required {
    color: #ff4444;
    font-weight: 600;
    font-size: 14px;
}

.joyn-chat-manager-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #ffffff;
    color: #333;
}

.joyn-chat-manager-input:focus {
    outline: none;
    border-color: #1389ff;
    box-shadow: 0 0 0 4px rgba(19, 137, 255, 0.1);
    background: #fafbff;
}

.joyn-chat-manager-input[readonly] {
    background-color: #f5f7fa;
    color: #555;
    cursor: not-allowed;
    border-color: #e0e0e0;
}

.joyn-chat-manager-input::placeholder {
    color: #bbb;
}

.joyn-chat-manager-form-message {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.joyn-chat-manager-form-message label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: -0.01em;
}

.joyn-chat-manager-textarea-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    width: 100%;
    box-sizing: border-box;
}

.joyn-chat-manager-textarea {
    flex: 1;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    resize: none;
    min-height: 100px;
    max-height: 180px;
    line-height: 1.6;
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    background: #ffffff;
    color: #333;
}

.joyn-chat-manager-textarea:focus {
    outline: none;
    border-color: #1389ff;
    box-shadow: 0 0 0 4px rgba(19, 137, 255, 0.1);
    background: #fafbff;
}

.joyn-chat-manager-textarea::placeholder {
    color: #bbb;
}

.joyn-chat-manager-send {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1389ff 0%, #0d6efd 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0;
    box-shadow: 0 4px 12px rgba(19, 137, 255, 0.3);
}

.joyn-chat-manager-send:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(19, 137, 255, 0.4);
    background: linear-gradient(135deg, #0d6efd 0%, #0a58d0 100%);
}

.joyn-chat-manager-send:active:not(:disabled) {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 8px rgba(19, 137, 255, 0.3);
}

.joyn-chat-manager-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.joyn-chat-manager-quick-options {
    display: none !important;
}

.joyn-chat-manager-quick-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 2px solid #e8f4ff;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(19, 137, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.joyn-chat-manager-quick-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1389ff 0%, #0d6efd 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.joyn-chat-manager-quick-option:hover {
    border-color: #1389ff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(19, 137, 255, 0.25);
}

.joyn-chat-manager-quick-option:hover::before {
    opacity: 1;
}

.joyn-chat-manager-quick-option i,
.joyn-chat-manager-quick-option span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.joyn-chat-manager-quick-option i {
    font-size: 20px;
    color: #1389ff;
    flex-shrink: 0;
}

.joyn-chat-manager-quick-option:hover i {
    color: white;
}

.joyn-chat-manager-quick-option span {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.joyn-chat-back-btn {
    display: none;
}

.joyn-chat-manager-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.joyn-chat-manager-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}

.joyn-chat-manager-option:hover {
    border-color: #1389ff;
    box-shadow: 0 4px 12px rgba(19, 137, 255, 0.15);
    transform: translateY(-2px);
    color: #333;
}

.joyn-chat-manager-option--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.joyn-chat-manager-option i {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1389ff;
    flex-shrink: 0;
}

.joyn-chat-manager-option > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.joyn-chat-manager-option span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.joyn-chat-manager-option small {
    font-size: 13px;
    color: #666;
}

.joyn-chat-back-btn {
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.joyn-chat-back-btn:hover {
    background: #f8f9fa;
    border-color: #1389ff;
    color: #1389ff;
}

/* 메시지 영역 */
.joyn-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f8f9fa;
}

.joyn-chat-message {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.joyn-chat-message--user {
    justify-content: flex-end;
}

.joyn-chat-message--bot {
    justify-content: flex-start;
}

.joyn-chat-message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.5;
    font-size: 14px;
    word-wrap: break-word;
}

.joyn-chat-message--user .joyn-chat-message-content {
    background: linear-gradient(135deg, #1389ff 0%, #0d6efd 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.joyn-chat-message--bot .joyn-chat-message-content {
    background: white;
    color: #333;
    border: 1px solid #e8e8e8;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.joyn-chat-message-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1389ff 0%, #0d6efd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 8px;
}

.joyn-chat-message--user .joyn-chat-message-avatar {
    display: none;
}

.joyn-chat-message--bot {
    display: flex;
    align-items: flex-start;
}

.joyn-chat-message--loading .joyn-chat-message-content {
    background: white;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.joyn-chat-loading-dots {
    display: flex;
    gap: 4px;
}

.joyn-chat-loading-dots span {
    width: 8px;
    height: 8px;
    background: #1389ff;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.joyn-chat-loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.joyn-chat-loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* 입력 영역 */
.joyn-chat-input-wrapper {
    border-top: 1px solid #e0e0e0;
    background: white;
    padding: 16px;
    flex-shrink: 0;
}

.joyn-chat-form {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.joyn-chat-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    max-height: 120px;
    line-height: 1.5;
    transition: border-color 0.2s;
}

.joyn-chat-input:focus {
    outline: none;
    border-color: #1389ff;
}

.joyn-chat-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1389ff 0%, #0d6efd 100%);
    border: none;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 20px;
    flex-shrink: 0;
}

.joyn-chat-send:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(19, 137, 255, 0.4);
}

.joyn-chat-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .joyn-chat-widget {
        top: auto;
        bottom: 200px;
        right: 15px;
        transform: none;
    }

    .joyn-chat-widget.active {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
    }

    .joyn-chat-toggle {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .joyn-chat-widget.active .joyn-chat-toggle {
        display: none;
    }

    .joyn-chat-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        max-width: 100%;
        max-height: 100%;
        min-height: 100vh;
        border-radius: 0;
        box-shadow: none;
        z-index: 9999;
    }

    .joyn-chat-widget.active .joyn-chat-container {
        display: flex;
        animation: slideUp 0.3s ease;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .joyn-chat-header {
        padding: 16px;
        border-radius: 0;
    }

    .joyn-chat-title {
        font-size: 18px;
    }

    .joyn-chat-subtitle {
        font-size: 12px;
    }

    .joyn-chat-messages {
        padding: 16px;
        max-height: calc(100vh - 140px);
    }

    .joyn-chat-message-content {
        max-width: 85%;
        font-size: 15px;
        padding: 10px 14px;
    }

    .joyn-chat-input-wrapper {
        padding: 12px;
    }

    .joyn-chat-input {
        font-size: 16px;
        padding: 10px 14px;
    }

    .joyn-chat-send {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .joyn-chat-manager-form-fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .joyn-chat-manager-header {
        padding: 12px 16px;
    }

    .joyn-chat-manager-messages {
        padding: 20px 16px;
        max-height: calc(100vh - 240px);
    }

    .joyn-chat-manager-form-wrapper {
        padding: 20px 16px;
    }

    .joyn-chat-manager-form-fields {
        gap: 10px;
        margin-bottom: 16px;
    }

    .joyn-chat-manager-input {
        font-size: 16px;
        padding: 12px 14px;
    }

    .joyn-chat-manager-textarea {
        font-size: 16px;
        padding: 12px 14px;
        min-height: 90px;
    }

    .joyn-chat-manager-send {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .joyn-chat-manager-quick-options {
        padding: 0 12px 12px 12px;
        flex-direction: column;
        gap: 10px;
    }

    .joyn-chat-manager-quick-option {
        font-size: 14px;
        padding: 14px 16px;
    }

    .joyn-chat-type-selector {
        padding: 16px;
    }

    .joyn-chat-type-selector-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .joyn-chat-type-btn {
        padding: 14px;
    }

    .joyn-chat-type-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .joyn-chat-type-info strong {
        font-size: 15px;
    }

    .joyn-chat-type-info span {
        font-size: 12px;
    }
}

/* 작은 모바일 화면 (480px 이하) */
@media (max-width: 480px) {
    .joyn-chat-container {
        width: 100vw;
        height: 100vh;
    }

    .joyn-chat-header {
        padding: 14px;
    }

    .joyn-chat-title {
        font-size: 16px;
    }

    .joyn-chat-subtitle {
        font-size: 11px;
    }

    .joyn-chat-messages {
        padding: 12px;
        max-height: calc(100vh - 130px);
    }

    .joyn-chat-message-content {
        max-width: 90%;
        font-size: 14px;
        padding: 10px 12px;
    }

    .joyn-chat-input-wrapper {
        padding: 10px;
    }

    .joyn-chat-input {
        font-size: 16px;
        padding: 10px 12px;
    }

    .joyn-chat-manager-messages {
        padding: 16px 12px;
        max-height: calc(100vh - 280px);
    }

    .joyn-chat-manager-form-wrapper {
        padding: 16px 12px;
    }

    .joyn-chat-manager-form-fields {
        gap: 10px;
        margin-bottom: 16px;
    }

    .joyn-chat-manager-header {
        padding: 14px 16px;
    }

    .joyn-chat-manager-messages {
        padding: 16px 12px;
        max-height: calc(100vh - 240px);
    }

    .joyn-chat-manager-form-wrapper {
        padding: 16px 12px;
    }

    .joyn-chat-manager-avatar {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .joyn-chat-manager-header-info h4 {
        font-size: 15px;
    }

    .joyn-chat-manager-status {
        font-size: 11px;
    }

    .joyn-chat-type-selector {
        padding: 12px;
    }

    .joyn-chat-type-selector-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .joyn-chat-type-btn {
        padding: 12px;
    }

    .joyn-chat-type-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* 스크롤바 스타일 */
.joyn-chat-messages::-webkit-scrollbar,
.joyn-chat-manager-messages::-webkit-scrollbar {
    width: 6px;
}

.joyn-chat-messages::-webkit-scrollbar-track,
.joyn-chat-manager-messages::-webkit-scrollbar-track {
    background: transparent;
}

.joyn-chat-messages::-webkit-scrollbar-thumb,
.joyn-chat-manager-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.joyn-chat-messages::-webkit-scrollbar-thumb:hover,
.joyn-chat-manager-messages::-webkit-scrollbar-thumb:hover {
    background: #999;
}

