.cookiemate-plugin .cookiemate-cookie-banner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999999999;
}

.cookiemate-plugin .cookiemate-cookie-banner {
    width: 100%;
    background-color: var(--cookiemate-banner-bg-color);
    color: var(--cookiemate-banner-text-color);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.cookiemate-plugin #cookiemate-cookie-banner.hide {
    opacity: 0;
    transform: translateY(100%);
}

.cookiemate-plugin .cookiemate-cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 70%;
}

.cookiemate-plugin .cookiemate-template-2 {
    display: block;
    margin-top: 10px;
}

.cookiemate-plugin .cookiemate-cookie-message {
    font-size: 14px;
    margin: 0;
}

.cookiemate-plugin .cookiemate-cookie-message-template-2 {
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
}

.cookiemate-plugin #cookiemate-accept-btn {
    background-color: var(--cookiemate-btn-color);
    border: none;
    color: var(--cookiemate-btn-text-color);
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.cookiemate-plugin #cookiemate-accept-btn:hover {
    background-color: var(--cookiemate-btn-color);
}

.cookiemate-plugin .cookiemate-cookie-content p a {
    color: var(--cookiemate-link-color);
}

.cookiemate-plugin .cookiemate-bottom-right-powered-by {
    position: absolute;
    bottom: 0;
    right: 0;
    font-weight: bold;
    font-size: 13px;
    color: #63bf99;
    z-index: 1;
    padding-right: 5px;
    padding-bottom: 2px;
}

.cookiemate-plugin .cookiemate-bottom-right-powered-by p {
    margin: 0;
}

.cookiemate-plugin .cookiemate-bottom-right-powered-by img {
    max-width: 100px;
}

.cookiemate-plugin .cookiemate-top-right-close-btn {
    position: absolute;
    line-height: 18px;
    font-weight: bold;
    z-index: 1;
    top: 0;
    right: 0;
    cursor: pointer;
    background-color: #63bf99;
    color: #fff;
    padding-left: 8px;
    padding-bottom: 5px;
    padding-right: 3px;
    padding-top: 3px;
    border-radius: 0;
    border-bottom-left-radius: 25px;
}