/* site.css — Global styles for MyWebApp (ASP.NET Core) */

html, body {
    height: 100%;
}

body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.03em;
}

.card {
    border-radius: .5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,.07);
    transition: box-shadow 0.2s ease;
}

    .card:hover {
        box-shadow: 0 4px 14px rgba(0,0,0,.12);
    }

footer a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
}

    footer a:hover {
        color: #fff;
    }

.field-validation-error {
    font-size: .85rem;
}

.text-muted-sm {
    font-size: .85rem;
    color: #6c757d;
}
