﻿/* wwwroot/css/cookie-consent.css */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}

.cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent__title {
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-consent__desc {
    font-size: 0.92rem;
    color: rgba(0,0,0,.7);
}

.cookie-consent__link {
    margin-left: 6px;
    text-decoration: none;
}

.cookie-consent__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        justify-content: flex-end;
    }
}
