#ct-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.ct-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ct-consent-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.ct-consent-actions {
    display: flex;
    gap: 10px;
}

.ct-btn-primary, .ct-btn-secondary {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    border: none;
    font-weight: 500;
}

.ct-btn-primary {
    background: #0073aa;
    color: #fff;
}

.ct-btn-primary:hover {
    background: #005177;
}

.ct-btn-secondary {
    background: #f0f0f1;
    color: #2271b1;
    border: 1px solid #2271b1;
}

.ct-btn-secondary:hover {
    background: #f6f7f7;
}
