/* Styling for the notice */
.pvab-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
    font-family: 'Noto Sans Myanmar', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    box-sizing: border-box;
    border: 2px solid #b71c1c;
    border-radius: 10px;
    max-width: 90%;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Heading style */
.pvab-notice h1 {
    font-size: 32px;
    margin: 0 0 20px;
}

/* Paragraph style */
.pvab-notice p {
    margin: 0;
    font-size: 20px;
}

/* Icon styles */
.pvab-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

/* Shield icon with rotation animation */
.pvab-icon-shield {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b71c1c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>');
    animation: rotate 2s linear infinite;
}

/* Alert icon with pulse animation */
.pvab-icon-alert {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b71c1c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 9v2m0 4h.01M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0z"></path></svg>');
    animation: pulse 1.5s ease-in-out infinite;
}

/* Rotation animation for shield */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Pulse animation for alert */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .pvab-notice {
        padding: 15px;
        width: 90%;
        font-size: 16px;
    }
    .pvab-notice h1 {
        font-size: 24px;
    }
    .pvab-notice p {
        font-size: 16px;
    }
    .pvab-icon {
        width: 48px;
        height: 48px;
    }
}

/* Ensure Burmese font is loaded */
@font-face {
    font-family: 'Noto Sans Myanmar';
    src: url('https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@400;700&display=swap');
    font-weight: normal;
    font-style: normal;
}