/* Shared CSS Styles for SISGEVE based on certidoes.html */

html {
    scrollbar-gutter: stable;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(at 0% 0%, rgba(224, 231, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(226, 232, 240, 0.2) 0px, transparent 50%);
    min-height: 100vh;
}

.font-display {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism utility card */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.7);
}

/* Custom premium scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Custom pulse animations for indicators */
@keyframes pulse-subtle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(0.98); }
}

.animate-pulse-subtle {
    animation: pulse-subtle 2s infinite;
}
