@charset "UTF-8";
/* CSS Document */

.cookie-consent { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 999999; max-width: 900px; margin: 0 auto; padding: 22px; background: #ffffff; border-radius: 10px; box-shadow: 0 5px 30px rgba(0, 0, 0, 0.20); font-family: Arial, sans-serif; } .cookie-consent-content { display: flex; align-items: center; justify-content: space-between; gap: 25px; } .cookie-consent strong { display: block; margin-bottom: 8px; font-size: 18px; } .cookie-consent p { margin: 0; color: #555; font-size: 14px; line-height: 1.5; } .cookie-consent-buttons { display: flex; gap: 10px; flex-shrink: 0; } .cookie-consent button { padding: 11px 20px; border-radius: 5px; cursor: pointer; font-size: 14px; font-weight: 600; } #cookie-accept { border: 0; background: #1a73e8; color: #ffffff; } #cookie-essential { border: 1px solid #ccc; background: #f5f5f5; color: #333; } @media (max-width: 700px) { .cookie-consent-content { flex-direction: column; align-items: stretch; } .cookie-consent-buttons { flex-direction: column; } .cookie-consent button { width: 100%; } }