/* ------------------------------
Header classes
------------------------------ */
.sbs-header-row {
  display: flex;
  align-items: center;
}

.sbs-header-row .et_pb_column:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sbs-header-row .et_pb_column:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* ------------------------------
   SBS full-width hero
------------------------------ */

.sbs-public-page-background {
    background-image: url("/wp-content/plugins/sbsusa-doc-library/images/Highway_Sky_50opacity.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.sbs-home-hero {
    background: url("/wp-content/plugins/sbsusa-doc-library/images/Highway_Sky_50opacity.png") no-repeat center center;
    background-size: 100% auto;

    max-width: 100vw;
    min-height: 920px;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding: 32px 20px 120px !important;
    box-sizing: border-box;
    overflow: visible;
}

/* ------------------------------
   SBS centered content box
------------------------------ */

.sbs-jumbotron {
    width: 920px;
    max-width: calc(100% - 120px);
    margin: 0 auto;
    padding: 28px 55px 34px;
    background: #e9e9e9;
    border-radius: 6px;
    box-sizing: border-box;
}

/* ------------------------------
   Typography
------------------------------ */

.sbs-jumbotron p {
    margin: 14px 0;
    font-size: 16px;
/*    line-height: 1.45; */
    font-weight: 200;
    text-align: center;
    color: black;
}

.sbs-welcome {
    margin: 0 0 14px 0;
    font-family: "Times New Roman", Cambria, Baskerville, serif;
    font-size: 1.75em;
    color: #e6f0ff;
    font-weight: bold;
    font-style: italic;
    text-align: center;
}

/* ✅ Corrected text styles */

.sbs-text {
    font-family: "Times New Roman", Cambria, Baskerville, serif;
    font-style: italic;
    font-weight: bold;
    color: #000;
}

.usa-text {
    font-family: "Times New Roman", Cambria, Baskerville, serif;
    font-weight: bold;
    color: #000;
}

/* Optional spacing tweak */
.sbs-text + .usa-text {
    margin-left: 4px;
}

/* ------------------------------
   Links
------------------------------ */

.sbs-jumbotron a {
    color: #6d9fc8;
    text-decoration: none;
}

.sbs-jumbotron a:hover {
    text-decoration: underline;
}

/* ------------------------------
   Button
------------------------------ */

.sbs-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 18px;
    font-family: "Times New Roman", Cambria, Baskerville, serif;
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
    background: #55a84f;
    border: 1px solid #4a9445;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.sbs-btn:hover {
    background: #4b9746;
    color: #fff !important;
    text-decoration: none;
}

/* Sortable header styling */
.sbsusa-docs-table th.sortable,
.sbsusa-manufacturers-table th.sortable {
    cursor: pointer;
    position: relative;
    user-select: none;
}

/* Default (unsorted) */
.sbsusa-docs-table th.sortable::after,
.sbsusa-manufacturers-table th.sortable::after {
    content: "⇅";
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    margin-left: 8px;
    color: #ffffff; /* matches your header text */
}

/* Ascending */
.sbsusa-docs-table th.sort-asc::after,
.sbsusa-manufacturers-table th.sort-asc::after {
    content: "↑";
}

/* Descending */
.sbsusa-docs-table th.sort-desc::after,
.sbsusa-manufacturers-table th.sort-desc::after {
    content: "↓";
}

/* Ascending */
.sbsusa-docs-table th.sort-asc::after,
.sbsusa-manufacturers-table th.sort-asc::after {
    content: " \2191";
}

/* Descending */
.sbsusa-docs-table th.sort-desc::after,
.sbsusa-manufacturers-table th.sort-desc::after {
    content: " \2193";
}