/**
 * English Hindi Translator - Floating Button
 * Button hamesha bottom-right mein dikhega
 */

.en-hi-translator-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4);
    z-index: 999999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    font-family: inherit;
}

.en-hi-translator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.5);
    background: linear-gradient(135deg, #2d5a87 0%, #3d6b9a 100%);
}

.en-hi-translator-btn:active {
    transform: translateY(0);
}

.en-hi-translator-btn.translating {
    pointer-events: none;
    opacity: 0.8;
}

.en-hi-translator-btn.translating .en-hi-translator-label::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: en-hi-spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes en-hi-spin {
    to { transform: rotate(360deg); }
}

/* Shortcode: position="inline" ya "header" - fixed nahi */
.en-hi-translator-btn.en-hi-translator-inline {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-flex;
}

/* Translate na ho */
.en-hi-translator-btn,
.en-hi-translator-btn *,
[data-no-translate] {
    -webkit-user-select: none;
    user-select: none;
}
