.button {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgb(27, 122, 71);
    padding: 10px 20px;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: 5px;
}
/*.button span {*/
/*    position: relative;*/
/*    pointer-events: none;*/
/*}*/
/*.button::before {*/
/*    --size: 0;*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: var(--x);*/
/*    top: var(--y);*/
/*    width: var(--size);*/
/*    height: var(--size);*/
/*    background: radial-gradient(circle closest-side, #ff0030, transparent);*/
/*    transform: translate(-50%, -50%);*/
/*    transition: width 0.2s ease, height 0.2s ease;*/
/*}*/
/*.button:hover::before {*/
/*    --size: 400px;*/
/*}*/

#imageModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

#imageModal.show {
    opacity: 1;
    pointer-events: auto;
}

#modalImage {
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#imageModal.show #modalImage {
    transform: scale(1);
    opacity: 1;
}

.description-wrapper {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.description-wrapper.collapsed .full-text {
    display: none;
}

.toggle-button {
    background: transparent;
    border: none;
    color: blue;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 0;
}

.toggle-button:hover {
    text-decoration: underline;
}

.description-wrapper {
    color: #4b5563;
}

.description-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.short-text-top {
    margin-bottom: 10px;
}

.full-text-top {
    margin-top: 10px;
}

.full-text-top span {
    display: block;
    margin-top: 10px;
}

.description-linner {
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 999;
}

.downloads-inner {
    display: flex;
    justify-content: center;
}

@media (max-width: 480px) {
    .button {
        width: 100%;
        display: block;
    }

    .close-btn {
        z-index: 999;
        right: 10px;
    }
}

