/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/

:root {
  --altcha-border-width: 0px; /* To remove Altcha border */
}

/* Language Selector Styles */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto; /* Push to the right in navbar */
}

.lang-link {
    color: var(--text-color, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-link:hover {
    background-color: var(--primary-color, #007bff);
    color: white;
}

.lang-link.active {
    background-color: var(--primary-color, #007bff);
    color: white;
    font-weight: 700;
}

.lang-separator {
    color: var(--text-color, rgba(255, 255, 255, 0.7));
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .language-selector {
        margin-top: 1rem;
        margin-left: 0;
        justify-content: center;
        padding: 0.5rem 0;
    }
}

/* For side-header layout specific adjustments */
@media (min-width: 992px) {
    .side-header .language-selector {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
}
