.counter-badge {
    background-color: #34495e;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.counter-icon {
    margin-right: 5px;
    font-style: normal;
}

/* Language Toggle Button */
.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    z-index: 100;
}

.language-toggle:hover {
    background-color: #2980b9;
}

/* Arabic Text Styles */
[lang="ar"] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'Arial Unicode MS';
    direction: rtl;
    text-align: right;
}

.hidden {
    display: none;
}

/* Responsive adjustments for language toggle */
@media (max-width: 768px) {
    .language-toggle {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}
