/*!
 * KnowledgeMiracle
 *
 * Copyright (c) 2022-2024   Knowledge Miracle Technologies, Inc.
 * Licensed under the KMT commercial license.
 *
 * Version: 1.5.0
 */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 999;
}

.cookie-consent-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent-content p {
    margin: 0;
}

.cookie-consent-content button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

.cookie-consent-content button:hover {
    background-color: #45a049;
}
