
#df-cookie-popup {
    position: fixed;
    bottom: 40px;
    padding: 25px 30px 30px;
    z-index: 9999;
    max-width: 600px;
    display: none;
    background: white;
    color: #222;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    width: auto;
}

.df-cookie-content {
    font-size: 14px;
}

.df-cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.df-cookie-header img {
  max-height: 50px;
  height: auto;
}

.df-cookie-header .date {
    font-size: 13px;
    color: #777;
}

.df-cookie-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

.df-cookie-buttons button {
    flex: 1 1 48%;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 6px;
    background-color: #0073aa;
    font-size: 15px;
    text-align: center;
}

.df-cookie-buttons button:hover {
    background-color: #005177;
}

.df-btn-accept {
    background-color: #28a745 !important;
}

.df-btn-accept:hover {
    background-color: #1e7e34 !important;
}

/* Responsive voor mobiel */
@media (max-width: 700px) {
    #df-cookie-popup {
        left: 10px !important;
        right: 10px !important;
        max-width: unset;
        border-radius: 15px;
    }
    .df-cookie-buttons {
        flex-direction: column;
    }
    .df-cookie-buttons button {
        flex: 1 1 100%;
    }
}
