.privacy-consent { position: fixed; bottom: 0; left: 0; width: 100%; background: #ffffff; border-top: 2px solid #e0e0e0; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); padding: 15px 20px; display: none; z-index: 999999; box-sizing: border-box; } .privacy-consent.show { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; } .privacy-consent p { margin: 0; font-size: 14px; color: #333; line-height: 1.4; flex: 1; min-width: 250px; } .privacy-consent a { color: #007bff; text-decoration: underline; } .privacy-consent .cookie-buttons { display: flex; gap: 10px; } .privacy-consent button { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; transition: background 0.3s; } .privacy-consent .accept-btn { background: #28a745; color: white; } .privacy-consent .accept-btn:hover { background: #218838; } .privacy-consent .decline-btn { background: #6c757d; color: white; } .privacy-consent .decline-btn:hover { background: #5a6268; } @media (max-width: 768px) { .privacy-consent { padding: 12px 15px; flex-direction: column; text-align: center; } .privacy-consent p { min-width: auto; font-size: 13px; margin-bottom: 10px; } .privacy-consent .cookie-buttons { width: 100%; justify-content: center; } .privacy-consent button { flex: 1; max-width: 120px; } }