    .entry-card {
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        color: black;
    }
    .entry-data {
        font-size: 15px;
        line-height: 1.6;
    }
    .entry-flag {
        text-align: center;
        padding-top: 15px;
    }
    .entry-image img {
        max-width: 50%;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s;
    }
    .entry-image img:hover {
        transform: scale(1.03);
    }
    .lightbox {
        display: none;
        position: fixed;
        z-index: 9999;
        padding-top: 60px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.8);
    }
    .lightbox img {
        display: block;
        margin: 0 auto;
        max-width: 90%;
        max-height: 80%;
    }
    .lightbox:target {
        display: block;
    }
    .download-link {
        display: block;
        text-align: center;
        margin-top: 10px;
    }