/* ========================================= */
/* CMP BANNER                                */
/* ========================================= */

#custom-cmp-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: whitesmoke;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    font-family: sans-serif;
    display: none;
    border-top: 4px solid rgb(206, 169, 7);
}
#custom-cmp-banner .cmp-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
#custom-cmp-banner h3 { margin: 0 0 10px 0; font-size: 18px; }
#custom-cmp-banner p { margin: 0; font-size: 14px; color: #555; line-height: 1.5; }
#custom-cmp-banner .cmp-buttons { display: flex; gap: 10px; }

.cmp-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}
.cmp-btn-accept { background-color: #b2ac8a; color: whitesmoke; }
.cmp-btn-reject { background-color: #f2ece6; color: #b2ac8a; }
.cmp-btn-settings { background-color: #f2ece6; color: #b2ac8a; }

#custom-cmp-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
#custom-cmp-modal .modal-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}
.cmp-switch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.cmp-switch-row:last-child { border-bottom: none; }