﻿/* Action Buttons Styles */
.translation-action-buttons {
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: flex;
    gap: 6px;
}

.translation-action-button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgb(62, 103, 157, 0.3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.7;
}
    .translation-action-button:hover {
        opacity: 1;
        background-color: rgba(108, 92, 231, 0.2);
        transform: scale(1.1);
    }

    .translation-action-button.playing {
        color: white;
        background-color: var(--primary-color);
        opacity: 1;
    }

    .translation-action-button.translating {
        color: white;
        background-color: #00b894;
        opacity: 1;
    }

    .translation-action-button i {
        font-size: 12px;
    }

.version-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: float 3s ease-in-out infinite;
}
