/* ChatGPT Summarize Button */
.keyone-chatgpt-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    z-index: 9999;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.keyone-chatgpt-button:hover {
    border-color: #c0c0c0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    background: white !important;
    transform: none !important;
    outline: none !important;
    text-decoration: none !important;
}

.keyone-chatgpt-button:focus,
.keyone-chatgpt-button:active,
.keyone-chatgpt-button:focus-visible {
    background: white !important;
    border-color: #d0d0d0 !important;
    outline: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    color: inherit !important;
}

.keyone-chatgpt-icon {
    width: 24px;
    height: 24px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/11865/11865326.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.keyone-chatgpt-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.keyone-chatgpt-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.keyone-chatgpt-subtitle {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
    margin: 0;
    margin-top: 2px;
}

.keyone-chatgpt-arrow {
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}