@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* Force Outfit font on everything to override Bootstrap */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div,
span,
input,
button,
.btn {
    font-family: "Outfit", sans-serif !important;
}

body {
    background: #efefef;
    color: #333;
    line-height: 1.6;
}

/* Center main content handled by .container in layout, but ensure max width for readability */
main.container {
    max-width: 900px;
}

/* Add padding between sections/divs as requested, especially for manual steps */
section,
.card,
.alert,
main>div>div {
    margin-bottom: 3rem;
    padding: 20px 0;
}

main>div>div img {
    width: 100%;
}

h1 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #475C5E
}

h2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Make links clearer */
a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: underline;
}

/* Enhancements for buttons */
.btn {
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
}

/* Navbar styling if we add one */
.navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Sidebar Styling */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    background-color: #f8f9fa;
    /* Light grey, can be adjusted to UGNA colors */
}

/* Specific UGNA colors based on request (approximate from logo/site) */
.text-primary {
    color: #475C5E !important;
    /* UGNA Green/Grey */
}

.btn-primary {
    background-color: #475C5E;
    border-color: #475C5E;
}

.btn-primary:hover {
    background-color: #364647;
    border-color: #364647;
}

.nav-link.active {
    background-color: #475C5E !important;
}

.nav-link {
    color: #333;
    font-weight: 500;
}

.nav-link:hover {
    color: #475C5E;
}

/* Adjust main content when sidebar is present */
@media (min-width: 768px) {
    .sidebar {
        position: sticky;
        height: calc(100vh);
        top: 0;
    }
}