.dlm-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    padding: 20px;
    display: none;
}

.dlm-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dlm-consent-text {
    flex: 1;
    min-width: 250px;
}

.dlm-consent-text p {
    margin: 0 0 10px 0;
}

.dlm-consent-text p:last-child {
    margin-bottom: 0;
}

.dlm-consent-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.dlm-consent-accept-all,
.dlm-consent-accept-necessary {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .dlm-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .dlm-consent-buttons {
        width: 100%;
        justify-content: center;
    }
} 