/* /Pages/Admin/Organizers/Schedules.cshtml.rz.scp.css */
/* Recurring Schedules Index — vertical rhythm (UI Polish-4), building on Mobile Polish-1.
   Page-scoped (CSS isolation): applies only to elements rendered by Schedules.cshtml.

   NOTE on link color: the contextual link color (#2c7ac7) is intentionally NOT here. CSS isolation
   only matches elements that carry this page's scope attribute, and ASP.NET does not add that
   attribute to anchors produced by Tag Helpers (asp-page/asp-route) — verified in the rendered HTML
   (the <a> has no b-* attribute) and in the generated selector (the rewriter appends the attribute
   to the rightmost element, e.g. `.list-group-item a[b-...]`, which the tag-helper <a> never has).
   So link color is handled by a page-only <style> block in Schedules.cshtml scoped to `main`.
   The rules below target plain <div class="list-group-item"> elements, which DO get the scope
   attribute, so isolation is correct for them.

   The index keeps its list-group layout (no cards). By default Bootstrap gives items tight 0.5rem
   vertical padding and removes the top border of every joined item after the first, so the rows
   read as a packed wall. Here each row gets more top/bottom breathing room, its full top border
   back, and a small gap below it — so the schedules scan with a clearer rhythm as separated rows.
   This is spacing only: no radius, no shadow, no card classes — structure is unchanged. */
.list-group-item[b-bjv1qp6i7f] {
    border-top-width: 1px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
}

.list-group-item:last-child[b-bjv1qp6i7f] {
    margin-bottom: 0;
}

/* Slightly larger gap between rows on narrow screens (retained from Mobile Polish-1). */
@media (max-width: 767.98px) {
    .list-group-item[b-bjv1qp6i7f] {
        margin-bottom: 1rem;
    }
}
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-kkvqg1lykx] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-kkvqg1lykx] {
  color: #0077cc;
}

.btn-primary[b-kkvqg1lykx] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-kkvqg1lykx], .nav-pills .show > .nav-link[b-kkvqg1lykx] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-kkvqg1lykx] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-kkvqg1lykx] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-kkvqg1lykx] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-kkvqg1lykx] {
  font-size: 1rem;
  line-height: inherit;
}
