body {
    font-family: Arial, Tahoma, sans-serif;
    margin: 0; padding: 0;
}
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background-color: #f1f1f1; color: #333;
    padding: 15px; text-align: center; z-index: 1000;
}
#cookie-settings-modal {
    display: none; position: fixed;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    background: #fff; padding: 20px; border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); z-index:1001;
    max-width: 500px; width: 90%;
}
.cookie-btn { padding:10px 15px; margin:5px; border:none; border-radius:3px; cursor:pointer; }
.cookie-btn-primary { background:#1B9AB5; color:#fff }
.cookie-btn-secondary { background:#f1f1f1; color:#333 }
.cookie-link { color:#1B9AB5; text-decoration:none }
.cookie-footer-link {
    position: fixed; bottom: 10px; right: 10px;
    background: #f1f1f1; padding:5px 10px; border-radius:3px;
    font-size:12px; text-decoration:none; color:#333;
}
@media (max-width:600px){
    #cookie-banner, #cookie-settings-modal { font-size:14px }
    .cookie-btn { padding:8px 12px }
}
