@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

.angie-floating-translator-daf6c567 {
	position: absolute; /* Changed from fixed to absolute so it doesn't scroll with page */
	top: 50px; 
	right: 120px; 
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
    transform: scale(0.8); /* Scaled down by 20% */
    transform-origin: top right; /* Ensure scaling keeps it anchored to the right */
}

.angie-ft-toggle-daf6c567 {
	width: auto;
    min-width: 80px;
    padding: 0 15px;
	height: 40px;
	background-color: #1a1a1a; 
	color: #fff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
    gap: 6px;
	cursor: pointer;
	box-shadow: 0 3px 12px rgba(0,0,0,0.3);
	transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.angie-ft-toggle-text-daf6c567 {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.angie-ft-toggle-daf6c567:hover {
	transform: translateY(2px);
	background-color: #333;
    box-shadow: 0 5px 16px rgba(0,0,0,0.4);
}

.angie-ft-panel-daf6c567 {
	display: none;
	background: #ffffff;
	padding: 20px;
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	border: 1px solid rgba(0,0,0,0.05);
	min-width: 220px;
}

.angie-ft-title-daf6c567 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-align: center;
}

.angie-ft-panel-daf6c567.angie-ft-show-daf6c567 {
	display: block;
	animation: fadeInTranslate_daf6c567 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInTranslate_daf6c567 {
	from {
		opacity: 0;
		transform: translateY(-15px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Custom HTML Dropdown */
.angie-custom-dropdown-daf6c567 {
    position: relative;
    width: 100%;
    user-select: none;
}

.angie-dropdown-selected-daf6c567 {
    padding: 10px 14px;
    background-color: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.angie-dropdown-selected-daf6c567 i {
    font-size: 9px;
    font-style: normal;
    color: #6b7280;
    transition: transform 0.2s;
}

.angie-custom-dropdown-daf6c567.angie-dropdown-open-daf6c567 .angie-dropdown-selected-daf6c567 {
    border-color: #3b82f6;
    background-color: #ffffff;
}

.angie-custom-dropdown-daf6c567.angie-dropdown-open-daf6c567 .angie-dropdown-selected-daf6c567 i {
    transform: rotate(180deg);
}

.angie-dropdown-list-daf6c567 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 10;
    overflow: hidden;
}

.angie-custom-dropdown-daf6c567.angie-dropdown-open-daf6c567 .angie-dropdown-list-daf6c567 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.angie-lang-option-daf6c567 {
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #374151;
    transition: background-color 0.2s;
}

.angie-lang-option-daf6c567:hover {
    background-color: #f3f4f6;
}

.angie-lang-option-daf6c567 img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Hide ALL Google Translate UI */
body { top: 0 !important; }
.skiptranslate iframe.goog-te-banner-frame { display: none !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; border: none !important; box-shadow: none !important; }