.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 30, 0.95);
    color: #fff;
    padding: 16px;
    display: none;
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-text {
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 6px 14px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.cookie-accept {
    background: #1e88e5;
    color: #fff;
}

.cookie-reject {
    background: #555;
    color: #fff;
}
