/* Gaya Global */
body {
    font-family: 'Tahoma', sans-serif;
}

/* Gaya Khas Sijil */
.font-cert {
    font-family: 'Arial', 'Roboto', sans-serif;
}

/* Animasi Masuk */
.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Corak Grid untuk Admin Preview */
.bg-grid {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Utility tambahan jika perlu (Tailwind sudah cover kebanyakan) */
.cert-container {
    position: relative;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}