/* Workshop site styles */
:root {
    --app-radius: 0.5rem;
    --app-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fc;
}

main.container {
    flex: 1;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #fff;
}

/* Backoffice dashboard tiles */
a.backoffice-tile {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border-radius: var(--app-radius);
}

a.backoffice-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.35rem 1rem rgba(13, 110, 253, 0.12) !important;
}

a.backoffice-tile:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Report hub cards */
.app-card {
    border-radius: var(--app-radius);
    transition: box-shadow 0.15s ease;
}

.app-card:hover {
    box-shadow: var(--app-shadow) !important;
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.02em;
}
