﻿/* ✅ Put this at the very top of site.css */
:root {
    --tcstra-green: #2E4D38;
    --tcstra-gold: #C9A227;
    --tcstra-slate: #4B4E53;
    --tcstra-blue: #5C93D1;
    --tcstra-white: #FFFFFF;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: var(--tcstra-white);
    color: var(--tcstra-slate);
}

/* Stewardship Sidebar: Anchoring Navigation as Ledger */
@media (max-width: 767px) {
    #sidebarDrawer {
        width: 100%;
        min-height: auto;
        border-right: none;
        border-bottom: 2px solid #ccc;
        padding: 0.5rem 0;
    }

        #sidebarDrawer .nav-link {
            display: block;
            text-align: center;
            padding: 0.75rem;
        }

    .main-content {
        margin-left: 0;
        padding: 1rem;
    }

    .layout-container {
        display: flex;
        flex-direction: column;
    }
}

/* Default hidden state */
.drawer-hidden {
    display: none;
}

/* Visible drawer styling */
.drawer-visible {
    display: block;
    position: absolute;
    top: 60px; /* Adjust based on your header height */
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    z-index: 1050;
    border-top: 1px solid #ccc;
    padding: 1rem;
}
.card-title {
    text-align: center;
}

.card-text {
    text-align: left;
}
.no-bullets {
    list-style-type: none; /* removes black dots */
    padding-left: 0; /* removes indent */
}

    .no-bullets li {
        margin-bottom: 0.5rem; /* optional spacing */
    }
.list-heading {
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 0.25rem; /* keeps it tight above the list */
}

.indented-list {
    list-style-type: none; /* remove black dots */
    padding-left: 1.5rem; /* increase indent under the heading */
    margin-bottom: 1rem; /* spacing before next section */
}

    .indented-list li {
        margin-bottom: 0.5rem; /* nice breathing room between items */
    }