    body {
        background-color: black;
        color: #00ff00;
        font-family: 'DejaVu Sans Mono', monospace;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 100vh;
        margin: 0;
    }
    .controls {
        margin: 20px 0;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .search-input {
        background: black;
        border: 1px solid #00ff00;
        color: #00ff00;
        padding: 8px;
        font-family: inherit;
        max-width: 300px;
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
#overlayImage {
    max-width: 90%;  /* Изображение не будет шире оверлея */
    max-height: 90%;  /* Изображение не будет выше оверлея */
    object-fit: contain;  /* Сохраняем пропорции изображения, вписываем его в контейнер */

}
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #00ff00;
        cursor: pointer;
        font-size: 2em;
    }
    a {
        color: white;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
