/* Microsoft Clarity Cookie Consent Banner Styles */

.clarity-banner-container {
    display: none; /* Hidden by default until status is checked via jQuery */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    padding: 15px 0;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.clarity-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.clarity-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

    .clarity-text strong {
        color: #333;
    }

.clarity-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept {
    background-color: #f27121;
    color: white;
    border: none;
    padding: 10px 35px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-decline {
    background-color: #fff;
    color: #f27121;
    border: 1px solid #f27121;
    padding: 10px 35px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-accept:hover {
    background-color: #d9651d;
}

.btn-decline:hover {
    background-color: #fff5f0;
}

/* Responsive for mobile devices */
@media (max-width: 768px) {
    .clarity-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-accept,
    .btn-decline {
        padding: 10px 20px;
        width: 100%;
    }
}
