.ccr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 999999;
    border-top: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.ccr-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ccr-banner-text {
    flex: 1 1 100%;
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.ccr-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ccr-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.ccr-btn-primary {
    background: #0073aa;
    color: #fff;
}
.ccr-btn-primary:hover {
    background: #005a87;
}

.ccr-btn-secondary {
    background: #e0e0e0;
    color: #333;
}
.ccr-btn-secondary:hover {
    background: #ccc;
}

.ccr-btn-link {
    background: transparent;
    color: #0073aa;
    text-decoration: underline;
}
.ccr-btn-link:hover {
    color: #005a87;
}

.ccr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ccr-modal-content {
    background: #fff;
    max-width: 600px;
    width: 90%;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.ccr-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}
.ccr-modal-close:hover {
    color: #000;
}

.ccr-options {
    margin: 20px 0;
}

.ccr-option {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.ccr-option label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}

.ccr-option input[type="checkbox"] {
    margin-right: 10px;
}

.ccr-option-desc {
    margin: 5px 0 0 25px;
    font-size: 13px;
    color: #666;
}

#ccr-save-settings {
    display: block;
    margin: 10px auto 0;
}

@media (min-width: 768px) {
    .ccr-banner-text {
        flex: 1 1 auto;
        margin: 0;
        text-align: left;
    }
    .ccr-banner-buttons {
        flex: 0 0 auto;
    }
}