/* Minimal Bootstrap 5.3 overrides for Railroad Frequencies website */

/* Ensure smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Ensure proper spacing between sections */
section {
    padding: 3rem 0; /* Bootstrap default section padding */
}

/* Make sure the navbar is properly positioned */
.navbar {
    transition: background-color 0.3s ease;
}

/* Ensure proper table styling */
.table-responsive {
    border-radius: 0.375rem;
}

/* Basic form styling */
.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
