/* CSS Stylesheet for the public view pages */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.feature-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.badge-live {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}