/**
 * ElevenLabs Voice Widget - Frontend Styles
 *
 * Minimalist, accessible design with smooth animations.
 */

/* ==========================================================================
   CSS Variables (defaults, overridden by inline styles from PHP)
   ========================================================================== */
:root {
    --elvw-primary: #0066FF;
    --elvw-primary-rgb: 0, 102, 255;
    --elvw-primary-light: #3385FF;
    --elvw-primary-dark: #0052CC;
    --elvw-bg: #FFFFFF;
    --elvw-bg-secondary: #F8F9FA;
    --elvw-text: #1A1A1A;
    --elvw-text-secondary: #6B7280;
    --elvw-border: #E5E7EB;
    --elvw-radius: 16px;
    --elvw-radius-sm: 8px;
    --elvw-radius-lg: 24px;
    --elvw-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --elvw-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --elvw-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    --elvw-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
.elvw-widget,
.elvw-widget *,
.elvw-widget *::before,
.elvw-widget *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.elvw-widget {
    position: fixed;
    z-index: 999999;
    font-family: var(--elvw-font-family);
    font-size: 14px;
    line-height: 1.5;
    color: var(--elvw-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Position Variants
   ========================================================================== */
.elvw-widget--bottom-right {
    bottom: 24px;
    right: 24px;
}

.elvw-widget--bottom-left {
    bottom: 24px;
    left: 24px;
}

.elvw-widget--top-right {
    top: 24px;
    right: 24px;
}

.elvw-widget--top-left {
    top: 24px;
    left: 24px;
}

/* ==========================================================================
   Launcher Button
   ========================================================================== */
.elvw-launcher {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--elvw-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--elvw-shadow);
    transition: all var(--elvw-transition);
    outline: none;
}

.elvw-launcher:hover {
    transform: scale(1.05);
    box-shadow: var(--elvw-shadow-lg);
}

.elvw-launcher:focus-visible {
    box-shadow: 0 0 0 3px rgba(var(--elvw-primary-rgb), 0.3), var(--elvw-shadow);
}

.elvw-launcher:active {
    transform: scale(0.95);
}

.elvw-launcher-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--elvw-transition);
}

.elvw-launcher-icon svg {
    width: 26px;
    height: 26px;
}

.elvw-launcher-custom-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
}

.elvw-launcher-icon--open {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.elvw-launcher-icon--close {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

.elvw-widget--open .elvw-launcher-icon--open {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.elvw-widget--open .elvw-launcher-icon--close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Pulse Animation */
.elvw-launcher-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--elvw-primary);
    opacity: 0;
    animation: elvw-pulse 2s infinite;
    pointer-events: none;
}

.elvw-widget--open .elvw-launcher-pulse {
    animation: none;
}

@keyframes elvw-pulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* ==========================================================================
   Chat Panel
   ========================================================================== */
.elvw-panel {
    position: absolute;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 560px;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    background: var(--elvw-bg);
    border-radius: var(--elvw-radius);
    box-shadow: var(--elvw-shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.elvw-widget--open .elvw-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Panel positioning based on widget position */
.elvw-widget--bottom-right .elvw-panel,
.elvw-widget--bottom-left .elvw-panel {
    bottom: 76px;
}

.elvw-widget--top-right .elvw-panel,
.elvw-widget--top-left .elvw-panel {
    top: 76px;
    transform-origin: top right;
}

.elvw-widget--bottom-right .elvw-panel,
.elvw-widget--top-right .elvw-panel {
    right: 0;
}

.elvw-widget--bottom-left .elvw-panel,
.elvw-widget--top-left .elvw-panel {
    left: 0;
    transform-origin: bottom left;
}

.elvw-widget--top-left .elvw-panel {
    transform-origin: top left;
}

/* ==========================================================================
   Header
   ========================================================================== */
.elvw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--elvw-bg);
    border-bottom: 1px solid var(--elvw-border);
}

.elvw-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.elvw-header-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--elvw-primary), var(--elvw-primary-dark));
    color: #fff;
    border-radius: 50%;
}

.elvw-header-avatar svg {
    width: 20px;
    height: 20px;
}

.elvw-header-avatar .elvw-custom-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.elvw-header-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--elvw-text);
    margin: 0;
}

.elvw-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--elvw-text-secondary);
}

.elvw-status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: elvw-blink 2s infinite;
}

@keyframes elvw-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.elvw-header-actions {
    display: flex;
    gap: 4px;
}

.elvw-header-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--elvw-text-secondary);
    border: none;
    border-radius: var(--elvw-radius-sm);
    cursor: pointer;
    transition: all var(--elvw-transition);
}

.elvw-header-btn:hover {
    background: var(--elvw-bg-secondary);
    color: var(--elvw-text);
}

.elvw-header-btn svg {
    width: 18px;
    height: 18px;
}

.elvw-btn-voice:hover {
    color: var(--elvw-primary);
}

/* ==========================================================================
   Messages
   ========================================================================== */
.elvw-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--elvw-bg-secondary);
    scroll-behavior: smooth;
}

.elvw-messages::-webkit-scrollbar {
    width: 6px;
}

.elvw-messages::-webkit-scrollbar-track {
    background: transparent;
}

.elvw-messages::-webkit-scrollbar-thumb {
    background: var(--elvw-border);
    border-radius: 3px;
}

.elvw-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: elvw-message-in 0.3s ease;
}

@keyframes elvw-message-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elvw-message--agent {
    align-self: flex-start;
}

.elvw-message--user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.elvw-message-avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--elvw-primary);
    color: #fff;
    border-radius: 50%;
}

.elvw-message-avatar svg {
    width: 16px;
    height: 16px;
}

.elvw-message-avatar .elvw-custom-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.elvw-message--user .elvw-message-avatar {
    background: var(--elvw-text);
}

.elvw-message-content {
    padding: 12px 16px;
    background: var(--elvw-bg);
    border-radius: var(--elvw-radius);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.elvw-message--agent .elvw-message-content {
    border-bottom-left-radius: 4px;
}

.elvw-message--user .elvw-message-content {
    background: var(--elvw-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.elvw-message-content p {
    margin: 0;
    word-wrap: break-word;
}

.elvw-message-content p + p {
    margin-top: 8px;
}

/* Typing Indicator */
.elvw-typing {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.elvw-typing-dot {
    width: 8px;
    height: 8px;
    background: var(--elvw-text-secondary);
    border-radius: 50%;
    animation: elvw-typing 1.4s infinite;
}

.elvw-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.elvw-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes elvw-typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* ==========================================================================
   Voice Panel (Pro)
   ========================================================================== */
.elvw-voice-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: var(--elvw-bg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.elvw-voice-panel[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.elvw-voice-panel[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.elvw-voice-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.elvw-voice-avatar {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--elvw-primary), var(--elvw-primary-dark));
    color: #fff;
    border-radius: 50%;
}

.elvw-voice-avatar svg {
    width: 40px;
    height: 40px;
}

.elvw-voice-avatar--active .elvw-voice-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--elvw-primary);
    animation: elvw-voice-pulse 1.5s infinite;
}

@keyframes elvw-voice-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.elvw-voice-timer {
    font-size: 28px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--elvw-text);
}

.elvw-voice-state {
    font-size: 14px;
    color: var(--elvw-text-secondary);
}

/* Voice Panel Action Button */
.elvw-voice-action {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.elvw-action-btn {
    --elvw-action-btn-color: var(--elvw-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    color: var(--elvw-action-btn-color);
    border: 1.5px solid var(--elvw-action-btn-color);
    border-radius: var(--elvw-radius-lg);
    font-family: var(--elvw-font-family);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--elvw-transition);
}

.elvw-action-btn:hover {
    background: var(--elvw-action-btn-color);
    color: #fff;
}

.elvw-action-btn:active {
    transform: scale(0.98);
}

.elvw-action-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Header Action Button */
.elvw-btn-action {
    color: var(--elvw-primary);
    transition: all var(--elvw-transition);
}

.elvw-btn-action:hover {
    color: var(--elvw-primary-dark);
    background: rgba(var(--elvw-primary-rgb), 0.1);
}

.elvw-voice-controls {
    display: flex;
    gap: 16px;
}

.elvw-voice-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--elvw-bg-secondary);
    color: var(--elvw-text);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--elvw-transition);
}

.elvw-voice-btn svg {
    width: 24px;
    height: 24px;
}

.elvw-voice-btn:hover {
    background: var(--elvw-border);
}

.elvw-voice-btn--mute.elvw-voice-btn--active {
    background: var(--elvw-primary);
    color: #fff;
}

.elvw-voice-btn--end {
    background: #EF4444;
    color: #fff;
}

.elvw-voice-btn--end:hover {
    background: #DC2626;
}

/* ==========================================================================
   Input Footer
   ========================================================================== */
.elvw-footer {
    padding: 16px 20px;
    background: var(--elvw-bg);
    border-top: 1px solid var(--elvw-border);
}

/* Voice-only mode start button */
.elvw-voice-start {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.elvw-start-voice-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--elvw-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--elvw-transition);
}

.elvw-start-voice-btn:hover {
    background: var(--elvw-primary-dark);
    transform: translateY(-1px);
}

.elvw-start-voice-btn svg {
    width: 20px;
    height: 20px;
}

/* Free version branding */
.elvw-branding {
    margin-top: 8px;
    text-align: center;
    font-size: 10px;
}

.elvw-branding a {
    color: var(--elvw-text-secondary);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity var(--elvw-transition);
}

.elvw-branding a:hover {
    opacity: 1;
    text-decoration: underline;
}

.elvw-input-form {
    display: flex;
    width: 100%;
}

.elvw-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--elvw-bg-secondary);
    border: 1px solid var(--elvw-border);
    border-radius: 12px;
    padding: 8px 8px 8px 16px;
    transition: border-color var(--elvw-transition);
    gap: 8px;
}

.elvw-input-wrapper:focus-within {
    border-color: var(--elvw-primary);
}

.elvw-input {
    flex: 1;
    padding: 4px 0;
    background: transparent !important;
    border: none !important;
    font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
    font-family: inherit;
    color: var(--elvw-text);
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    resize: none;
    min-height: 20px;
    max-height: 120px;
    line-height: 1.4;
    overflow-y: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.elvw-input:focus,
.elvw-input:active,
.elvw-input:hover {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Force remove all browser input styles */
.elvw-input-wrapper input,
.elvw-input-wrapper input:focus,
.elvw-input-wrapper input:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    background-image: none !important;
}

.elvw-input::placeholder {
    color: var(--elvw-text-secondary);
    font-size: 16px;
}

/* Remove autofill styling */
.elvw-input:-webkit-autofill,
.elvw-input:-webkit-autofill:hover,
.elvw-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--elvw-bg-secondary) inset !important;
    -webkit-text-fill-color: var(--elvw-text) !important;
}

.elvw-send-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--elvw-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--elvw-transition);
    opacity: 0.5;
    transform: scale(0.9);
}

.elvw-send-btn:not(:disabled) {
    opacity: 1;
    transform: scale(1);
}

.elvw-send-btn:not(:disabled):hover {
    background: var(--elvw-primary-dark);
}

.elvw-send-btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Inline Chat (Shortcode)
   ========================================================================== */
.elvw-inline-chat {
    width: 100%;
    max-width: 600px;
    border: 1px solid var(--elvw-border);
    border-radius: var(--elvw-radius);
    overflow: hidden;
}

.elvw-chat-container.elvw-inline {
    display: flex;
    flex-direction: column;
    height: 400px;
}

.elvw-inline-chat .elvw-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: var(--elvw-bg-secondary);
}

.elvw-inline-chat .elvw-chat-input-form {
    display: flex;
    padding: 12px;
    background: var(--elvw-bg);
    border-top: 1px solid var(--elvw-border);
    gap: 8px;
}

.elvw-inline-chat .elvw-chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--elvw-border);
    border-radius: var(--elvw-radius-sm);
    font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
    font-family: inherit;
    outline: none;
    transition: all var(--elvw-transition);
}

.elvw-inline-chat .elvw-chat-input:focus {
    border-color: var(--elvw-primary);
}

/* ==========================================================================
   Inline Buttons (Shortcode)
   ========================================================================== */
.elvw-inline-btn,
.elvw-call-button,
.elvw-trigger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--elvw-font-family);
    color: #fff;
    background: var(--elvw-primary);
    border: none;
    border-radius: var(--elvw-radius-sm);
    cursor: pointer;
    transition: all var(--elvw-transition);
}

.elvw-inline-btn:hover,
.elvw-call-button:hover,
.elvw-trigger-button:hover {
    background: var(--elvw-primary-dark);
    transform: translateY(-1px);
}

.elvw-inline-btn svg,
.elvw-call-button svg,
.elvw-trigger-button svg {
    width: 18px;
    height: 18px;
}

.elvw-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.elvw-trigger-text {
    white-space: nowrap;
}

.elvw-call-button--secondary,
.elvw-trigger-button--secondary {
    background: var(--elvw-bg);
    color: var(--elvw-text);
    border: 1px solid var(--elvw-border);
}

.elvw-call-button--secondary:hover,
.elvw-trigger-button--secondary:hover {
    background: var(--elvw-bg-secondary);
}

.elvw-call-button--outline {
    background: transparent;
    color: var(--elvw-primary);
    border: 2px solid var(--elvw-primary);
}

.elvw-call-button--outline:hover {
    background: var(--elvw-primary);
    color: #fff;
}

/* Pro Notice */
.elvw-pro-notice {
    display: inline-block;
    padding: 8px 12px;
    font-size: 13px;
    color: #6B7280;
    background: #F3F4F6;
    border-radius: var(--elvw-radius-sm);
}

.elvw-pro-notice a {
    color: var(--elvw-primary);
    font-weight: 500;
}

/* ==========================================================================
   Dark Theme
   ========================================================================== */
.elvw-widget--dark {
    --elvw-bg: #1A1A1A;
    --elvw-bg-secondary: #2D2D2D;
    --elvw-text: #FFFFFF;
    --elvw-text-secondary: #A0A0A0;
    --elvw-border: #404040;
}

.elvw-widget--dark .elvw-message-content {
    box-shadow: none;
}

.elvw-widget--dark .elvw-message--user .elvw-message-avatar {
    background: #404040;
}

.elvw-widget--dark .elvw-input,
.elvw-widget--dark .elvw-input::placeholder {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.elvw-widget--dark .elvw-input::placeholder {
    color: #A0A0A0 !important;
    -webkit-text-fill-color: #A0A0A0 !important;
}

/* ==========================================================================
   Auto Theme (System Preference)
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    .elvw-widget--auto {
        --elvw-bg: #1A1A1A;
        --elvw-bg-secondary: #2D2D2D;
        --elvw-text: #FFFFFF;
        --elvw-text-secondary: #A0A0A0;
        --elvw-border: #404040;
    }

    .elvw-widget--auto .elvw-message-content {
        box-shadow: none;
    }

    .elvw-widget--auto .elvw-message--user .elvw-message-avatar {
        background: #404040;
    }

    .elvw-widget--auto .elvw-input,
    .elvw-widget--auto .elvw-input::placeholder {
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
    }

    .elvw-widget--auto .elvw-input::placeholder {
        color: #A0A0A0 !important;
        -webkit-text-fill-color: #A0A0A0 !important;
    }
}

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */
@media (max-width: 480px) {
    .elvw-widget {
        bottom: 16px !important;
        right: 16px !important;
        left: auto !important;
        top: auto !important;
    }

    .elvw-launcher {
        width: 54px;
        height: 54px;
    }

    .elvw-launcher-icon svg {
        width: 22px;
        height: 22px;
    }

    .elvw-panel {
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        max-height: none !important;
        border-radius: 0;
    }

    .elvw-widget--open .elvw-launcher {
        display: none;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .elvw-widget *,
    .elvw-widget *::before,
    .elvw-widget *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible states */
.elvw-widget *:focus-visible {
    outline: 2px solid var(--elvw-primary);
    outline-offset: 2px;
}

.elvw-widget button:focus-visible {
    outline-offset: 0;
}

/* High contrast mode support */
@media (forced-colors: active) {
    .elvw-launcher,
    .elvw-send-btn,
    .elvw-voice-btn,
    .elvw-inline-btn {
        border: 2px solid currentColor;
    }
}
