.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.cookie-consent-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    font-size: 13px;
    line-height: 1.45;
    color: #475569;
}

.cookie-consent-text strong {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-actions button {
    cursor: pointer;
}

.cookie-settings {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #cbd5e1;
}

.cookie-settings a,
.cookie-settings button {
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    color: #94a3b8;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-settings a:hover,
.cookie-settings button:hover {
    color: #e2e8f0;
}

.cookie-settings span {
    margin: 0 6px;
}

@media (max-width: 700px) {

    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-consent-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }

}

.cookie-copyright {
    color: #94a3b8;
}