﻿.hover-box:hover {
    background-color: #EDF0F5;
    cursor: pointer;
}

.hilight {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.hilight-button {
    padding: 10px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hilight-button:hover .icon-size {
    transform: scale(1.3);
}

/*  .hilight-button.active {
     background-color: #e6f0ff !important;
     border: 2px solid #007bff !important;
     box-shadow: 0 0 8px rgba(0, 123, 255, 0.5) !important;
 } */

.icon-size {
    height: 29px;
    width: 29px;
    transition: transform 0.3s ease-in-out;
}

/* Image takes ~50% of card */
.annual-report-img-container {
    /*  width: 100%; */
    /* height: 200px; /* fixed height instead of small padding-top */
    overflow: hidden;
}

.annual-report-img-container img {
    /*  width: 100%;
            height: 100%;  */
    /*  object-fit: cover; */
    object-fit: contain; /* fills block without small gaps */
}

.blog-card {
    display: inline-block !important;
    flex-direction: column !important;
    height: 490px !important;
    border: 1px solid #ddd !important;
}

/*loader: start*/
.language-loader {
    position: fixed;
    inset: 0;
    z-index: 2000; /* above welcome-popup */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(10, 47, 92, 0.12); /* faint brand-blue tint */
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px); /* Safari support */
}

.language-loader__spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e0e0e0;
    border-top-color: #333; /* swap for your brand color */
    border-radius: 50%;
    animation: language-loader-spin 0.8s linear infinite;
}

.language-loader__text {
    margin: 0;
    font-weight: 600;
}

@keyframes language-loader-spin {
    to {
        transform: rotate(360deg);
    }
}
/*loader: end*/