.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#accept-cookies {
    background: #007bff;
    color: white;
}

#reject-cookies {
    background: #6c757d;
    color: white;
}

#cookie-settings {
    background: transparent;
    border: 1px solid #6c757d;
}

.cookie-settings-modal {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-settings-modal h3 {
    margin-top: 0;
    color: #333;
}

.cookie-settings-modal label {
    display: block;
    margin-bottom: 10px;
    color: #666;
}

.cookie-settings-modal button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-settings-modal button:hover {
    background: #0056b3;
}