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;
}

body {
    line-height: 1.6;
}

.card {
    transition: transform 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
    }

.alert {
    display: none;
}

/* New navbar styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.navbar-brand {
    padding: 0.5rem 1rem; /* Padding for logo and brand text */
}

.navbar-nav .nav-item {
    padding: 0.5rem 1rem; /* Padding for nav items */
}

.navbar-nav .nav-link {
    color: #333; /* Dark text for white background */
    transition: color 0.2s;
}

    .navbar-nav .nav-link:hover {
        color: #007bff; /* Primary blue on hover */
    }

.navbar-nav .btn-outline-primary {
    padding: 0.4rem 1.2rem; /* Padding for Create Account button */
    border-width: 2px; /* Thicker border for emphasis */
}

    .navbar-nav .btn-outline-primary:hover {
        background-color: #007bff;
        color: white;
    }

/* Alternating row colors */
.alternating-row.row-light {
    background-color: #f8f9fa; /* Light gray (Bootstrap bg-light) */
    padding: 20px;
    border-radius: 8px;
}

.alternating-row.row-dark {
    background-color: #e9ecef; /* Slightly darker gray */
    padding: 20px;
    border-radius: 8px;
}

/* Information hub styling */
h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.list-unstyled li {
    margin-bottom: 10px;
}

.list-unstyled a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

    .list-unstyled a:hover {
        color: #0056b3;
        text-decoration: underline;
    }

/* Ensure responsiveness */
@media (max-width: 768px) {
    .row-dark, .row-light {
        padding: 15px;
    }

    .col-md-3 {
        margin-bottom: 20px;
    }
}

/* Search bar */
.input-group {
    max-width: 500px;
}

/* Pagination */
.pagination .page-link {
    color: #007bff;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
}

/* Alerts */
.alert {
    display: block; /* Override display: none; from original site.css */
}

.smaller-text {
    font-size: 0.875rem;
}

/* Home */
.full-width-bg {
    background-color: #f8f9fa;
    width: 100%;
}

.section-padding-small {
    padding: 4rem 4rem;
}

.rounded-section {
    border-radius: 1rem;
    background-color: #fff;
    overflow: hidden;
}

.full-width-bg.rounded-section {
    background-color: #f8f9fa;
}

.section-text {
    color: #6c757d;
    line-height: 1.6;
    margin: 1.5rem 0;
}
.max-width {
    max-width: 600px;
}


.section-spacing {
    margin-bottom: 3rem;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}