/* GoodVibesOnly Chat Widget Frontend Styles */

.gvo-chat-widget {
    position: fixed;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gvo-chat-widget[data-position="bottom-right"] {
    bottom: 20px;
    right: 20px;
}

.gvo-chat-widget[data-position="bottom-left"] {
    bottom: 20px;
    left: 20px;
}

.gvo-chat-widget[data-position="top-right"] {
    top: 20px;
    right: 20px;
}

.gvo-chat-widget[data-position="top-left"] {
    top: 20px;
    left: 20px;
}

.gvo-chat-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gvo-header-bg, #18181b);
    color: var(--gvo-header-text, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gvo-chat-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.gvo-chat-window {
    width: var(--gvo-chat-width, 400px);
    height: var(--gvo-chat-height, 650px);
    max-height:500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: gvo-slideIn 0.3s ease-out;
}

@keyframes gvo-slideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gvo-chat-header {
    background: var(--gvo-header-bg, #18181b);
    color: var(--gvo-header-text, #ffffff);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px 12px 0 0;
}

.gvo-chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.gvo-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gvo-chat-avatar-default {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gvo-chat-header-info {
    flex: 1;
}

.gvo-chat-bot-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.gvo-chat-bot-status {
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gvo-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.gvo-status-dot.gvo-status-available {
    background: #22c55e;
    animation: gvo-pulse 2s infinite;
}

.gvo-status-dot.gvo-status-ai-only {
    background: #eab308;
}

.gvo-status-dot.gvo-status-pending {
    background: #f59e0b;
    animation: gvo-pulse 1.5s infinite;
}

@keyframes gvo-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.gvo-chat-close-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.gvo-chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.gvo-chat-messages {
    flex: 1;
    overflow-y: scroll;
    padding: 20px;
    background: #fafafa;
    height: 60%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gvo-chat-message {
    display: flex;
    gap: 10px;
    animation: gvo-messageIn 0.3s ease-out;
}

.gvo-system-message {
    justify-content: center;
    margin: 8px 0;
}

.gvo-system-message-text {
    background: none;
    color: #71717a;
    font-size: 13px;
    font-style: italic;
    text-align: center;
    padding: 8px 16px;
    border-radius: 12px;
    max-width: 80%;
}

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

.gvo-chat-message.gvo-user-message {
    flex-direction: row-reverse;
}

.gvo-message-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: var(--gvo-border-radius, 12px);
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

#gvo-preview-test-btn{
    max-width:120px;
}


#gvo-clear-debug-log{
    max-width:120px;

}

.gvo-bot-message .gvo-message-bubble {
    background: var(--gvo-bot-bubble, #f4f4f5);
    color: var(--gvo-bot-text, #18181b);
    border-bottom-left-radius: 4px;
}

.gvo-user-message .gvo-message-bubble {
    background: var(--gvo-user-bubble, #18181b);
    color: var(--gvo-user-text, #ffffff);
    border-bottom-right-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gvo-msg-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 4px;
}

.gvo-msg-status svg {
    display: block;
}

.gvo-msg-status-sending {
    opacity: 0.6;
    animation: gvo-status-pulse 1.5s ease-in-out infinite;
}

.gvo-msg-status-sent {
    opacity: 0.8;
}

.gvo-msg-status-failed {
    color: #ef4444;
    cursor: help;
}

.gvo-msg-sending {
    opacity: 0.9;
}

.gvo-msg-failed .gvo-message-bubble {
    background: #fee2e2;
    color: #991b1b;
}

@keyframes gvo-status-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

.gvo-typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--gvo-bot-bubble, #f4f4f5);
    border-radius: var(--gvo-border-radius, 12px);
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.gvo-typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #71717a;
    animation: gvo-typing 1.4s infinite;
}

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

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

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

.gvo-chat-input-container {
    padding: 16px;
    background: white;
    border-top: 1px solid #e4e4e7;
    display: flex;
    gap: 8px;
}

.gvo-chat-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.gvo-chat-input:focus {
    border-color: var(--gvo-header-bg, #18181b);
}

.gvo-chat-send-btn {
    width: 44px;
    height: 44px;
    background: var(--gvo-header-bg, #18181b);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.gvo-chat-send-btn:hover:not(:disabled) {
    opacity: 0.9;
}

.gvo-chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gvo-chat-window {
        width: calc(100vw - 40px) !important;
        height: calc(100vh - 70px) !important;
        max-height: 500px;
        max-width: 400px;
    }
    
    .gvo-chat-widget[data-position="bottom-right"],
    .gvo-chat-widget[data-position="bottom-left"] {
        bottom: 10px;
    }
    
    .gvo-chat-widget[data-position="bottom-right"] {
        right: 10px;
    }
    
    .gvo-chat-widget[data-position="bottom-left"] {
        left: 10px;
    }
}

.gvo-chat-attachments-preview {
    padding: 8px 16px;
    background: #f9f9f9;
    border-top: 1px solid #e5e5e5;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gvo-attachment-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    font-size: 13px;
    color: #374151;
}

.gvo-attachment-icon {
    font-size: 16px;
    line-height: 1;
}

.gvo-attachment-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gvo-attachment-remove {
    background: none;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: #6b7280;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.gvo-attachment-remove:hover {
    color: #dc2626;
}

.gvo-chat-attach-btn {
    background: none;
    border: none;
    padding: 8px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.gvo-chat-attach-btn:hover {
    color: #374151;
}

.gvo-message-attachments {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gvo-attachment-image {
    max-width: 300px;
    max-height: 200px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.gvo-attachment-image:hover {
    transform: scale(1.02);
}

.gvo-attachment-video {
    max-width: 300px;
    border-radius: 8px;
}

/* Capacity States */
.gvo-capacity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

.gvo-capacity-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #f59e0b;
}

.gvo-capacity-title {
    font-size: 20px;
    font-weight: 600;
    color: #18181b;
    margin-bottom: 8px;
}

.gvo-capacity-message {
    font-size: 14px;
    color: #71717a;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Queue State (Tier 1 - Soft) */
.gvo-queue-badge {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fbbf24;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gvo-queue-position {
    font-size: 32px;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 8px;
}

.gvo-queue-wait-time {
    font-size: 16px;
    color: #52525b;
    margin-bottom: 24px;
}

.gvo-queue-progress {
    width: 100%;
    height: 8px;
    background: #f4f4f5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.gvo-queue-progress-bar {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.gvo-alternatives {
    width: 100%;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 20px;
}

.gvo-alternatives-title {
    font-size: 13px;
    font-weight: 600;
    color: #52525b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gvo-alternative-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: #18181b;
}

.gvo-alternative-btn:hover {
    background: #f4f4f5;
    border-color: #d4d4d8;
}

.gvo-alternative-icon {
    font-size: 20px;
}

.gvo-alternative-text {
    flex: 1;
    text-align: left;
}

.gvo-alternative-label {
    font-size: 14px;
    font-weight: 500;
    color: #18181b;
    display: block;
}

.gvo-alternative-desc {
    font-size: 12px;
    color: #71717a;
    display: block;
    margin-top: 2px;
}

/* AI-Only State (Tier 2 - Hard) */
.gvo-ai-only-badge {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #3b82f6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gvo-ai-features {
    width: 100%;
    margin: 20px 0;
}

.gvo-ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
}

.gvo-ai-feature-icon {
    color: #3b82f6;
    font-size: 20px;
    flex-shrink: 0;
}

.gvo-ai-feature-text {
    flex: 1;
    font-size: 14px;
    color: #52525b;
    text-align: left;
}

.gvo-availability-note {
    font-size: 13px;
    color: #71717a;
    background: #fafafa;
    padding: 12px;
    border-radius: 6px;
    margin-top: 16px;
}

/* Unavailable State (Tier 3 - Critical) */
.gvo-unavailable-badge {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gvo-unavailable-message {
    font-size: 15px;
    color: #52525b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.gvo-contact-options {
    width: 100%;
    margin: 24px 0;
}

.gvo-contact-option {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    text-align: left;
}

.gvo-contact-option-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #18181b;
    margin-bottom: 4px;
}

.gvo-contact-option-desc {
    font-size: 13px;
    color: #71717a;
    margin-left: 32px;
}

.gvo-next-available {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    color: #92400e;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
}

/* Notification Form */
.gvo-notify-form {
    width: 100%;
    margin-top: 20px;
}

.gvo-notify-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: inherit;
}

.gvo-notify-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.gvo-notify-btn {
    width: 100%;
    padding: 12px 24px;
    background: #18181b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.gvo-notify-btn:hover {
    opacity: 0.9;
}

.gvo-notify-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Action Buttons */
.gvo-capacity-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
}

.gvo-btn-primary {
    flex: 1;
    padding: 12px 24px;
    background: #18181b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.gvo-btn-primary:hover {
    opacity: 0.9;
}

.gvo-btn-secondary {
    flex: 1;
    padding: 12px 24px;
    background: white;
    color: #18181b;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.gvo-btn-secondary:hover {
    background: #fafafa;
    border-color: #d4d4d8;
}

/* KB Search Tabs */
.gvo-chat-tabs {
    display: flex;
    background: white;
    border-bottom: 1px solid #e4e4e7;
    padding: 0;
}

.gvo-chat-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #71717a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.gvo-chat-tab:hover {
    color: #18181b;
    background: #fafafa;
}

.gvo-chat-tab.active {
    color: var(--gvo-header-bg, #18181b);
    border-bottom-color: var(--gvo-header-bg, #18181b);
    background: white;
}

.gvo-chat-tab svg {
    flex-shrink: 0;
}

/* KB Search Container */
.gvo-chat-search {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gvo-search-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gvo-search-input-wrapper {
    position: relative;
    padding: 16px;
    background: white;
    border-bottom: 1px solid #e4e4e7;
}

.gvo-search-icon {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #71717a;
    pointer-events: none;
}

.gvo-search-input {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.gvo-search-input:focus {
    border-color: var(--gvo-header-bg, #18181b);
}

/* Search Results */
.gvo-search-results {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #fafafa;
}

.gvo-search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #71717a;
    text-align: center;
    padding: 32px 16px;
}

.gvo-search-empty svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.gvo-search-empty p {
    font-size: 14px;
    margin: 0;
}

.gvo-search-result-card {
    background: white;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.gvo-search-result-card:hover {
    border-color: var(--gvo-header-bg, #18181b);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.gvo-search-result-title {
    font-size: 15px;
    font-weight: 600;
    color: #18181b;
    margin-bottom: 6px;
    line-height: 1.4;
}

.gvo-search-result-excerpt {
    font-size: 13px;
    color: #71717a;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gvo-search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    color: #71717a;
    font-size: 14px;
}

.gvo-search-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    color: #71717a;
    text-align: center;
}

.gvo-search-no-results svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.gvo-search-no-results p {
    font-size: 14px;
    margin: 0;
}

/* Article Modal */
.gvo-article-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gvo-article-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.gvo-article-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    animation: gvo-modalIn 0.3s ease-out;
}

@keyframes gvo-modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gvo-article-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #e4e4e7;
    background: white;
    border-radius: 12px 12px 0 0;
}

.gvo-article-modal-back,
.gvo-article-modal-close {
    background: none;
    border: none;
    padding: 8px;
    color: #71717a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.gvo-article-modal-back:hover,
.gvo-article-modal-close:hover {
    background: #f4f4f5;
    color: #18181b;
}

.gvo-article-modal-close {
    margin-left: auto;
}

.gvo-article-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.gvo-article-modal-body h1 {
    font-size: 24px;
    font-weight: 700;
    color: #18181b;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.gvo-article-modal-body h2 {
    font-size: 20px;
    font-weight: 600;
    color: #18181b;
    margin: 24px 0 12px 0;
}

.gvo-article-modal-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #18181b;
    margin: 20px 0 10px 0;
}

.gvo-article-modal-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #52525b;
    margin: 0 0 16px 0;
}

.gvo-article-modal-body ul,
.gvo-article-modal-body ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.gvo-article-modal-body li {
    font-size: 15px;
    line-height: 1.7;
    color: #52525b;
    margin-bottom: 8px;
}

.gvo-article-modal-body code {
    background: #f4f4f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Monaco', 'Menlo', monospace;
}

.gvo-article-modal-body pre {
    background: #f4f4f5;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 0 0 16px 0;
}

.gvo-article-modal-body pre code {
    background: none;
    padding: 0;
}

.gvo-article-modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.gvo-article-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e4e4e7;
    background: #fafafa;
    border-radius: 0 0 12px 12px;
}

.gvo-article-modal-footer p {
    font-size: 14px;
    color: #71717a;
    margin: 0 0 12px 0;
    text-align: center;
}

.gvo-article-feedback {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.gvo-feedback-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    color: #52525b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.gvo-feedback-btn:hover {
    border-color: var(--gvo-header-bg, #18181b);
    background: #fafafa;
}

.gvo-feedback-btn.voted {
    background: var(--gvo-header-bg, #18181b);
    color: white;
    border-color: var(--gvo-header-bg, #18181b);
}

.gvo-feedback-btn svg {
    flex-shrink: 0;
}

/* Mobile Article Modal */
@media (max-width: 768px) {
    .gvo-article-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .gvo-article-modal-header {
        border-radius: 0;
    }
    
    .gvo-article-modal-footer {
        border-radius: 0;
    }
}
