.pro-clarity-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999999;
    font-size: 14px;
    line-height: 1.5;
}

.pro-clarity-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pro-clarity-options {
    margin: 15px 0;
}

.pro-clarity-option {
    margin: 15px 0;
    padding: 12px;
   /* background: #f8f8f8; */
   border: 1px solid #e2e2e2;
    border-radius: 4px;
}

.pro-clarity-option p {
    margin: 0;
    line-height: 1.4;
}

.pro-clarity-option strong {
    color: #956ea5;
}

.pro-clarity-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.pro-clarity-accept,
.pro-clarity-decline,
.pro-clarity-save {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
    box-shadow: none;
    font-weight: normal;
}

.pro-clarity-accept {
    background: #956ea5;
    color: white;
    box-shadow: none;    font-weight: normal;
}

.pro-clarity-accept:hover {
    background: #45556c;
    box-shadow: none;
}

.pro-clarity-decline {
    background: #ccc;
   
    color: #333;
    box-shadow: none;
    border: 1px solid #ccc;

}

.pro-clarity-decline:hover {
    box-shadow: none;
    color: #333;
    border: 1px solid #333;
}

.pro-clarity-settings-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;

    z-index: 999998;
    font-size: 14px;
}

.pro-clarity-settings-button:hover {
    background: #f8f8f8;
}

.pro-clarity-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
}

.pro-clarity-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.pro-clarity-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    line-height: 1;
}

.pro-clarity-modal h2 {
    margin: 0 0 20px;
    font-size: 1.5em;
    color: #2271b1;
}

/* Accessibility */
.pro-clarity-banner button:focus,
.pro-clarity-modal button:focus,
.pro-clarity-settings-button:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .pro-clarity-banner-content {
        padding: 15px;
    }

    .pro-clarity-actions {
        flex-direction: column;
    }

    .pro-clarity-actions button {
        width: 100%;
    }

    .pro-clarity-settings-button {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
    }
}