#gdpr-popup {
    position: fixed;
    bottom: 0px;
    /*right: 20px;*/
    background-color: #fff;
    padding: 18px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 2147489999;
    font-size: 14px;
}

.gdpr-accept {
    margin: 10px 0;
    background-color: #007c65;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    width: 100%;
    border: none;
    cursor: pointer;
}

.gdpr-accept:hover {
    background-color: #605932;
}

.gdpr-reject {
    background-color: #000;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gdpr-reject:hover {
    background-color: #c33909;
}

/* Mobiln� �prava */
@media (max-width: 768px) {
    #gdpr-popup {
        bottom: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
}