
/* الحاوية */
/* .container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    width: 60%;
} */

/* زر تغيير اللغة على شكل إحداثيات */
.language-toggle {
    width: 30px;
    height: 30px;
    /* background: white; */
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out;
}

.language-toggle:hover {
    transform: rotate(360deg);
}

/* الدائرة الداخلية */
/* .circle {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid #0072ff;
    border-radius: 50%;
    animation: rotateCircle 4s linear infinite;
} */

/* أيقونة الكرة الأرضية */
.language-toggle span {
    font-size: 24px;
    position: absolute;
}

/* تأثير دوران الدائرة */
@keyframes rotateCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}