#dp-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    text-align: left;
    z-index: 10000;
    font-family: Arial, sans-serif;
    border: 5px solid #4dae50;
}

#dp-popup-header {
    /* background: #4A90E2; */
    background: #4caf50;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
}

/* Обрезка изображения */
#dp-popup-text {
    max-height: 100px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease-in-out;
}

#dp-toggle:checked ~ #dp-popup-text {
    max-height: none;
}

#dp-popup-text img {
    width: 100%;
    height: auto;
    display: block;
}

/* Скрытый чекбокс для переключения */
#dp-toggle {
    display: none;
}

/* Кнопка Read More */
#dp-read-more {
    font-weight: bold;
    cursor: pointer;
    color: #007bff;
    margin: 5px 14px;
    text-decoration: underline;
    display: block;
}

/* Кнопка "I understand" */
#dp-understand-button {
    margin: 10px 14px;
    padding: 10px 20px;
    /* background: #4CAF50; */
    background: #027bff;
    color: white;
    border: none;
    cursor: pointer;
    width: 90%;
    max-width: 250px;
    text-transform: uppercase;
}

/* Адаптация для мобильных устройств */
@media (max-width: 600px) {
    #dp-popup {
        width: 95%;
        max-width: 380px;
    }

    #dp-popup-header {
        font-size: 14px;
    }

    #dp-popup-text {
        max-height: 80px;
    }

    #dp-read-more {
        font-size: 13px;
    }

    #dp-understand-button {
        font-size: 14px;
        padding: 8px 15px;
    }
}