﻿.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-ddrc-dark);
    color: #ffffff;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    font-size: 0.95rem;
}

.cookie-consent__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

    .cookie-consent__content p {
        flex: 1 1 60%;
        margin: 0;
    }

    .cookie-consent__content a {
        color: #93c5fd;
        text-decoration: underline;
    }

.cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-consent button {
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-ddrc-primary-200);
    color: #fff;
}

.btn-secondary {
    background-color: #6b7280;
    color: #fff;
}
