/* Prop 65 Warning Styles */
.mvp-prop65-warning {
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.5;
    gap: 15px; /* Space between icon and content */
}

.mvp-prop65-warning-icon {
    font-size: 2.5em; /* Large warning icon */
    color: #FFC107; /* Yellow warning color */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.mvp-prop65-warning-content strong {
    color: #dc3232; /* Red for WARNING text */
    font-size: 1.8em;
    display: block; /* Make WARNING bold and on its own line */
    /*margin-bottom: 5px;*/
}

.mvp-prop65-warning-content a {
    color: #0073aa; /* Link color */
    text-decoration: underline;
}

.mvp-prop65-warning-content a:hover {
    color: #005177;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mvp-prop65-warning {
        flex-direction: column; /* Stack icon and content vertically on smaller screens */
        text-align: center;
        padding: 15px;
        align-items: center;
        gap: 0px;
    }

    .mvp-prop65-warning-icon {
        font-size: 5.5em;
        margin-bottom: 0px;
    }
}