/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 8888;
    font-family: Arial, sans-serif;
}

.cookie-text {
    margin: 0 15px 10px 0;
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-text a {
    color: #4dabf7;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.accept-btn {
    background: #4dabf7;
    color: white;
}

.accept-btn:hover {
    background: #339af0;
}

.settings-btn {
    background: transparent;
    color: white;
    border: 1px solid #868e96;
    visibility: hidden !important;
}

.settings-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
