﻿.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;
}