body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.5); /* subtle border */
}

a {
    color: #337ab7;
    text-decoration: none;
}

.bold {
    font-weight: bold;
}

.wrapper {
    display: flex;
    flex: 1;
    overflow: hidden;
}
.sidebar {
    width: 250px;
    flex-shrink: 0;
}
.content {
    padding: 1rem;
    background-color: #ffffff; /* changed to white */
    width: 100%;
}
.sidebar-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.sidebar .dropdown-toggle {
    text-decoration: none !important;
}
.sidebar .nav-link svg,
.sidebar a span {
    text-decoration: none !important;
}
.sidebar a[data-bs-toggle="collapse"] span {
    text-decoration: none !important;
    border: none;
}
.sidebar a[data-bs-toggle="collapse"]:hover,
.sidebar a[data-bs-toggle="collapse"]:focus {
    text-decoration: none;
}
.sidebar a[data-bs-toggle="collapse"] {
    border-bottom: none !important;
}
.sidebar a[data-bs-toggle="collapse"] span {
    display: inline-block;
    text-decoration: none;
    border-bottom: none;
}
@media (max-width: 767px) {
    .section-info-box {
        padding: 1rem;
        display: block !important;
    }
    .section-info-box > div.d-flex {
        display: block !important;
    }
    .section-info-box > div.me-3,
    .section-info-box > div > div.me-3 {
        float: left;
        margin-right: 0.5rem !important;
        margin-bottom: 0.25rem;
    }
    .section-info-box::after,
    .section-info-box > div.d-flex::after {
        content: '';
        display: block;
        clear: both;
    }
    .section-info-box h5 ~ * {
        clear: left;
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        height: 100%;
        background: #343a40;
        color: white;
        transition: left 0.3s ease-in-out;
        z-index: 1030;
    }
    .sidebar.show {
        left: 0;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        display: none;
        z-index: 1020;
    }
    .overlay.show {
        display: block;
    }
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}


/* Cards used when selecting a website design. */
.design-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
}
.design-card-img-top {
  height: 180px;
  object-fit: cover;
  cursor: zoom-in;
}
.design-card-body {
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.design-card-content {
  flex-grow: 1;
  margin-bottom: 1rem;
}
.design-btn-select {
  border-radius: 50px;
  background-color: #e2e6ea;
  color: #495057;
  border: none;
  font-size: 0.9rem;
}
.design-btn-select:hover {
  background-color: #d6d8db;
  color: #343a40;
}
.design-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.design-modal-img {
  width: 100%;
  height: auto;
}
/* End website design cards */



.content-card {
  border: 1px solid rgba(0, 0, 0, 0.05); /* subtle border */
  background-color: #ffffff; /* changed to white */
}




.topbar-notice {
    background-color: #f4d9c1;
    color: #303030;
    padding: 1rem;
    border-bottom: 1px solid #f4d9c1;
}

.topbar-notice-btn {
    background-color: white;
    color: #303030;
    display: inline-block;
    font-weight: normal;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1px;
    padding-bottom: 3px;
    margin-top: 0.5rem;
    border: 1px solid #a0a0a0;
}
.topbar-notice-btn:hover {
    background-color: #28a745;
    color: white;
}
.topbar-notice-btn:active {
    background-color: #28a745 !important;
    color: white !important;
}





.section-info-box {
    background-color: #f8f9fa; /* light gray */
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.section-group-label {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.75rem;
    margin-top: 1.75rem;
}
.section-group-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin-left: 0.6rem;
}
.section-group-label-toggle {
    text-decoration: none;
    cursor: pointer;
}
.section-group-label-toggle:hover {
    color: #6b7280;
}
.section-group-label-chevron {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}
.section-group-label-toggle:not(.collapsed) .section-group-label-chevron {
    transform: rotate(-180deg);
}

.section-info-box-icon {
    max-height: 40px;
    vertical-align: top;
}
.section-info-box-header {
    font-size: 18px;
}

.section-info-box-warning {
    background-color: #fbf1e8 !important;
}

.section-info-box-highlight {
    background-color: #fbf1e8 !important;
}


.section-info-box > h1 {
    text-transform: uppercase;
    font-size: 17px;
}




div.page-header {
    padding-bottom: 20px;
}

h1.page-header {
    font-size: 27px;
    font-weight: 700;
}
h2.page-header {
    font-size: 20px;
    font-weight: 700;
}


a.page-header {
    background-color: #ff677e;
    color: white;
}
a.page-header:hover {
    background-color: #cc677e;
    color: white;
}

#popup-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #333;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: opacity 0.4s ease-in-out;
  z-index: 1000;
}

.breadcrumb-item {
    font-size: 14px;
    color: grey;
    font-weight: 600;
}

.breadcrumb-item > a {
    font-size: 14px;
    color: #005aa8;
    font-weight: 600;
}

  .hanging-list {
    list-style: disc;
    padding-left: 1.5em; /* space for bullet */
  }
  .hanging-list li {
    padding-left: 0.5em; /* space before text */
    text-indent: -0.5em; /* pulls first line back so bullet shows */
  }

  
.good-btn {
    background-color: #22c55e;
    color: white;
    display: inline-block;
    font-weight: bold;
    margin-top: 0.5rem;
    border-radius: 25px;
}
.good-btn:hover,
.good-btn:focus,
.good-btn:active,
.good-btn:focus-visible {
    background-color: #22c55e !important;
    color: white !important;
}

.good-btn-large {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.good-btn-cancel {
    background-color: #4a90e2 !important;
    color: white;
}
.good-btn-cancel:hover {
    background-color: #4a90e2 !important;
    color: white !important;
}
.good-btn-cancel:active {
    background-color: #4a90e2 !important;
    color: white !important;
}

.good-btn-angry {
    background-color: #dc3545;
    color: white;
}
.good-btn-angry:hover {
    background-color: #dc3545 !important;
    color: white !important;
}
.good-btn-angry:active {
    background-color: #dc3545 !important;
    color: white !important;
}

.good-btn-warning {
    background-color: rgb(255, 193, 7);
    color: white;
}
.good-btn-warning:hover {
    background-color: rgb(255, 193, 7) !important;
    color: white !important;
}
.good-btn-warning:active {
    background-color: rgb(255, 193, 7) !important;
    color: white !important;
}
.good-btn-warning:focus {
    background-color: rgb(255, 193, 7) !important;
    color: white !important;
}
.good-btn-warning:focus-visible {
    background-color: rgb(255, 193, 7) !important;
    color: white !important;
}

.menu-icon {
    max-width: 15px;
    max-height: 15px;
    margin-right: 5px;
}

.nav-item-active {
    background-color: rgba(255,255,255,0.12);
    border-radius: 0.25rem;
}

.design-screenshot {
    width: 100%;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.screenshot-img-overview-sm {
  object-fit: cover;
  cursor: zoom-in;
  border-radius: 10px;
  width: 100%;
}

.screenshot-img-overview-lg {
  height: 180px;
  object-fit: cover;
  cursor: zoom-in;
  border-radius: 10px;
}

.errorlist {
    margin-top: 15px;
    margin-bottom: 0px;
    padding-left: 0px;
    color: red;
    list-style-type: none;
}

.data-update-category {
    border: 1px solid rgba(0, 0, 0, 0.05); /* subtle border */
    background-color: aliceblue;
    font-weight: bold;
}

.design-price-section {
    margin-bottom: 10px;
    font-size: 0.8em;
}

.design-price-free {
    color: #28a745;
}

.section-info-box-link {
    text-decoration: none;
    color: inherit;
}

/* Filesystem-style pages list */
.pages-fs-list {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}
.pages-fs-row {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  transition: background 0.1s;
}
.pages-fs-row:last-child {
  border-bottom: none;
}
.pages-fs-row:hover {
  background: #f8f9fa;
}
.pages-fs-row--disabled {
  opacity: 0.55;
}
.pages-fs-row--default {
  background: #fafafa;
}
.pages-fs-row--available {
  background: #fafafa;
}
.pages-fs-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 1.4rem;
  text-align: center;
  opacity: 0.7;
}
.pages-fs-path {
  flex: 0 0 auto;
  min-width: 110px;
}
.pages-fs-path code {
  font-size: 0.82rem;
  color: #212529;
}
.pages-fs-meta {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  min-width: 0;
}
.pages-fs-label {
  font-size: 0.82rem;
  color: #495057;
}
.pages-fs-badge {
  font-size: 0.62rem !important;
  padding: 0.2em 0.5em !important;
}
.pages-fs-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.pages-fs-actions .good-btn {
  margin-top: 0;
}
.pages-fs-empty {
  padding: 1.5rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.85rem;
}
@media (max-width: 576px) {
  .pages-fs-row {
    flex-wrap: wrap;
  }
  .pages-fs-path {
    min-width: 0;
    flex: 1;
  }
  .pages-fs-actions {
    width: 100%;
    padding-left: 2.15rem;
  }
}
