.language-selector-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.dark .language-selector-footer {
    border-color: #374151;
}

.language-actions {
    display: flex;
    gap: 0.75rem;
}

.action-button {
    font-size: 0.875rem;
    color: #2563eb;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.dark .action-button {
    color: #60a5fa;
}

.action-button:hover {
    color: #1d4ed8;
}

.dark .action-button:hover {
    color: #93c5fd;
}

.convert-button {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    background: linear-gradient(to bottom, #3b82f6, #2563eb);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.convert-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
}

.dark .convert-button:hover {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.2);
}

.convert-button:active {
    transform: translateY(0);
}

.convert-button.disabled {
    background: #e5e7eb;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.dark .convert-button.disabled {
    background: #374151;
}
