<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Grammarly Notification Styles */
.grammarly-notification {
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 1000;
}

.grammarly-notification .alert-link {
    color: #0056b3;
    text-decoration: underline;
}

.grammarly-notification .close {
    padding: 1.25rem;
}

/* Grammarly Form Optimization */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    spellcheck: true;
    -webkit-spellcheck: true;
    -moz-spellcheck: true;
    -ms-spellcheck: true;
}

/* Grammarly Suggestions Styling */
.grammarly-suggestion {
    border-bottom: 2px dotted #ff0000;
    cursor: pointer;
    position: relative;
}

.grammarly-suggestion:hover {
    background-color: rgba(255, 0, 0, 0.1);
}

/* Brave-specific styles */
@supports (-webkit-appearance:none) {
    .grammarly-notification {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        -webkit-appearance: none;
        appearance: none;
    }
} </pre></body></html>