@charset "utf-8";
/* CSS Document */
#cookie-consent {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 340px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.13);
    padding: 20px 22px 18px;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: #374151;
    z-index: 9999;
    border-left: 4px solid #2563eb;
    transition: opacity .3s, transform .3s;
}

#cookie-consent.cc-hidden {
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
}

#cookie-consent p {
    margin: 0 0 14px;
}

#cookie-consent a {
    color: #2563eb;
    text-decoration: none;
}

#cookie-consent a:hover {
    text-decoration: underline;
}

#cookie-consent .cc-title {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#cookie-consent .cc-buttons {
    display: flex;
    gap: 8px;
}

#cookie-consent .cc-btn {
    flex: 1;
    padding: 8px 0;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background .2s;
}

#cookie-consent .cc-btn-accept {
    background: #2563eb;
    color: #fff;
}

#cookie-consent .cc-btn-accept:hover {
    background: #1d4ed8;
}

#cookie-consent .cc-btn-decline {
    background: #f3f4f6;
    color: #374151;
}

#cookie-consent .cc-btn-decline:hover {
    background: #e5e7eb;
}