/* Global Base Styles and Navigation */

.translateBtn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.translateBtn:hover {
    background: #00f2fe;
    color: black;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .translateBtn { 
        margin-left: 0; 
        margin-top: 10px; 
        width: 100%; 
        justify-content: center; 
    }
}
