:root {
    --dp-popup-header-bg: #4caf50;
    --dp-popup-button-bg: #027bff;
}

#dp-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    /* display: flex; */
    display: none;
    flex-direction: column;
    text-align: left;
    z-index: 10000;
    font-family: Arial, sans-serif;
}

#dp-popup-header {
    background: #e5eaeb;
    color: #4a5563;
    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;
}

#dp-read-more {
    font-weight: bold;
    cursor: pointer;
    color: #007bff;
    margin: 5px 14px;
    text-decoration: underline;
    display: block;
}

#dp-understand-button {
    margin: 10px 14px;
    padding: 10px 20px;
    background: var(--dp-popup-button-bg);
    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;
    }
}