
.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #111827;
    color: #f9fafb;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
}
.cookie-consent__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-consent__actions button {
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 600;
}
.cookie-consent__accept {
    background: #22c55e;
    color: #0b1220;
}
.cookie-consent__reject {
    background: #374151;
    color: #f9fafb;
}
.cookie-consent a {
    color: #93c5fd;
    text-decoration: underline;
}
@media (min-width: 768px) {
    .cookie-consent {
        left: auto;
        right: 24px;
        max-width: 420px;
    }
}
