﻿.cmp-banner {
    background-color: #f4f4f4;
    color: #333;
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 1100px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.cmp-content {
    padding: 12px;
    display: flex;
    flex-direction: row;
    gap:10px;
    justify-content: space-between;
    align-items: center;
}

.cmp-txt {
    max-height: 80px;
    overflow: auto;
    font-size: 14px;
}

.cmp-button-main {
    min-width: 160px;
}

.cmp-banner .buttons {
    display: flex;
    gap: 10px;
}

.cmp-banner button {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.cmp-banner .accept-btn {
    background-color: #ff7226;
    color: white;
}

.cmp-banner .reject-btn {
    background-color: #D6D7DC;
    color: white;
}

.hidden {
    display: none;
}

@media screen and (min-width: 0px) and (max-width: 768px) {
    .cmp-content {
        flex-direction: column;
    }
}
