/* Translation Module Styling */

/* Turkish alternatives styling */
.turkish-alternatives {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.turkish-alternative {
    background-color: #F59E0B;
    color: #000000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.turkish-alternative:hover {
    background-color: #D97706;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    border-color: rgba(245, 158, 11, 0.5);
}

.turkish-alternative:active {
    transform: translateY(0px);
    box-shadow: 0 1px 4px rgba(245, 158, 11, 0.3);
}

/* Translation loading indicator */
.translation-loading {
    opacity: 0.6;
    pointer-events: none;
    animation: translationPulse 1.5s infinite ease-in-out;
}

@keyframes translationPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
}

/* Translation error state */
.translation-error {
    color: #FF7B7B;
    font-style: italic;
    opacity: 0.8;
}

/* Turkish text selection styling */
.turkish-text.selectable::selection {
    background: rgba(245, 158, 11, 0.3) !important;
}

.turkish-text.selectable::-moz-selection {
    background: rgba(245, 158, 11, 0.3) !important;
}
