.elementor-710 .elementor-element.elementor-element-8873b45{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-710 .elementor-element.elementor-element-3be63c8f{--display:flex;--min-height:700px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:60px;--padding-bottom:60px;--padding-left:20px;--padding-right:20px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-710 .elementor-element.elementor-element-3be63c8f{--content-width:800px;}}/* Start custom CSS for html, class: .elementor-element-69ccb7fe *//* ✅ Style the container for each document */
.fuldmagt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
background-color: var(--e-global-color-themecolor, #f7f7f7);
border-radius: 8px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

/* ✅ Hover effect for document box */
.fuldmagt-item:hover {
    background-color: #F0F0F0;
}

/* ✅ File info layout */
.file-info {
    display: flex;
    flex-direction: column;
}

/* ✅ Style the title */
.file-info strong {
    font-size: 18px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: #141414;
}

/* ✅ Make the title smaller on mobile */
@media (max-width: 768px) {
    .file-info strong {
        font-size: 17px;
    }
}

/* ✅ Style the year (small and light grey) */
.file-info small {
    font-size: 14px;
    color: #999;
}

/* ✅ Style the download icon */
.download-icon img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
    filter: brightness(0); /* Black */
}

/* ✅ Hide the download button on mobile */
@media (max-width: 768px) {
    .download-icon {
        display: none;
    }
}

/* ✅ Remove default link styling */
.file-info a {
    color: #141414; /* Standard black color */
    text-decoration: none; /* No underline */
}

/* ✅ Change link color on hover */
.file-info a:hover {
    text-decoration: none; /* No underline on hover */
}/* End custom CSS */