@charset "utf-8";
/* CSS Document */

html {
    min-height: 100vh;
    background: #dfe4ea;
}

/* Layout structure */
body.ops-body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: linear-gradient(to bottom, #ffffff 0%, #eef1f5 55%, #dfe4ea 100%);
    position: relative;
}

.ops-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.ops-header {
    height: 145px;
    background: linear-gradient(to right, #2c2c2c, #3a3a3a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ops-logo {
    max-height: 130px;
    display: block;
}

.ops-topnav {
    height: 44px;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    font-size: 14px;
}

.ops-topnav a {
    margin-left: 17px;
    color: #2f5bd3;
    text-decoration: none;
}

.ops-layout {
    display: flex;
    flex: 1;
    background: transparent;
}

.ops-sidebar {
    width: 190px;
    flex-shrink: 0;
    background: #ffffff;
    border-right: 1px solid #ddd;
    padding: 20px 16px;
}

.ops-content-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0px;
}

.ops-content {
    flex: 1;
    min-width: 0;
    padding: 28px 40px;
    overflow-x: auto;
    overflow-y: auto;
    word-break: break-word;
}

.date-error {
    color: red;
    display: none;
    margin-top: 5px;
    font-size: 12px;
}

.ops-content h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin: 0 0 20px 0;   /* increase this */
    color: #1f1f1f;
}

.inparabold {
	font-weight: bold;
}

.ops-content table,
.ops-content pre {
    max-width: 100%;
    overflow-x: auto;
}

.ops-center {
    text-align: center;
}

.ops-right-panel {
    width: 220px;
	position: relative;
    flex-shrink: 0;
    padding: 20px;
    line-height: 1.5;
    word-wrap: break-word;
}

.ops-right-panel.is-hidden {
    display: none;
}

.ops-right-panel-close {
    position: absolute;
    top: 14px;
	right: 14px;

    width: 24px;
    height: 24px;

    border: none;
    background-color: #000;
    color: #fff;

    font-size: 18px;
    font-weight: normal;

    line-height: 22px;   /* instead of matching full height */
    text-align: center;

    cursor: pointer;
    padding: 0;

    border-radius: 4px;
	
	display: flex;
	align-items: center;
	justify-content: center;
}

.ops-right-panel-close:hover {
    background-color: #000;
}

.ops-right-panel-close:hover {
    background-color: #333;

}

.ops-right-panel-box {
    background: #f9fafc;                 /* subtle soft background */
    border-left: 3px solid #2a6fd6;      /* SubSplash-style accent */
    border-radius: 6px;
    padding: 16px 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.ops-right-panel-box h4 {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.ops-right-panel-box p {
    font-size: 13px;
    color: #666;
}

.ops-content {
    flex: 1;
	padding: 0px 28px 28px 28px;
    overflow-x: auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    min-width: 0; /* important for flexbox overflow behavior */
}

.ops-page-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
	margin-top: 0;
    margin-bottom: 10px;
    color: #000;
}

.ops-page-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 35px;
    color: #111;
}

.ops-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 34px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.ops-content table,
.ops-content pre {
    max-width: 100%;
    overflow-x: auto;
}

/* Components */
.ops-login-panel {
    width: 460px;
    flex-shrink: 0;
    margin: 0 auto;
    background: #f7f7f7;
    border-radius: 8px;

    padding: 24px 26px 70px 26px;  /* 🔥 bottom padding baked in */

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateX(14px);
}

.ops-login-panel h3 {
    margin-bottom: 14px;
}

.ops-login-panel p {
    margin-bottom: 14px;
}

.ops-login-panel br {
    display: none;
}

.ops-login-panel p {
    margin: 10px 0;
}

.ops-login-panel table {
    border-collapse: collapse;
}

.ops-login-panel td {
    padding: 6px 8px;
}

.ops-login-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
/* Login form polish / Standard form controls */
.ops-content input[type="text"],
.ops-content input[type="password"],
.ops-content select,
.ops-login-panel input[type="text"],
.ops-login-panel input[type="password"],
.ops-login-panel select {
    width: 160px;
    max-width: 100%;
    height: 36px;

    padding: 4px 8px;
    border: 1px solid #aeb4bd;
    border-radius: 4px;
    background-color: #ffffff;

    font-size: 14px;
    box-sizing: border-box;
}

.ops-login-panel input[type="submit"],
.ops-login-panel button[type="submit"] {
    background: #3a3a3a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 8px 28px;
    font-size: 14px;
    cursor: pointer;
}

.ops-login-panel input[type="submit"]:hover,
.ops-login-panel button[type="submit"]:hover {
    background: #242424;
}

/* Navigation */
.ops-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 15px;
}

.ops-nav-item,
.ops-nav-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #111;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: normal;
    border: none;
    background: transparent;
}

.ops-nav-icon {
    width: 20px;
    text-align: center;
    color: #444;
    flex-shrink: 0;
    font-size: 14px;
}

.ops-nav-chevron {
    margin-left: auto;
    color: #999;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.ops-nav-subitems {
    display: none;
    padding-left: 42px;
    padding-bottom: 4px;
	
}

.ops-nav-subitems a {
    display: block;
    padding: 7px 8px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: normal;
}

.ops-nav-group.open .ops-nav-subitems {
    display: block;
}

/* Footer */
.ops-footer {
    padding: 12px 24px;
    font-size: 12px;
    color: #666;
    background: #f3f4f6;
}

.ops-login-error {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px auto 22px auto;
    padding: 11px 14px;
    width: 380px;
    color: #8f1d1d;
    background: #fff7f7;
    border: 1px solid #e6aaaa;
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
    text-align: left;
}

.ops-login-error-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #b93a3a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.ops-content h2,
.ops-content h3 {
    color: #000;
    font-weight: 700;
}

.ops-content input[type="text"]:focus,
.ops-content input[type="password"]:focus,
.ops-content select:focus,
.ops-login-panel input[type="text"]:focus,
.ops-login-panel input[type="password"]:focus,
.ops-login-panel select:focus {
    outline: none;
    border-color: #5c6f8f;
    box-shadow: 0 0 0 2px rgba(92, 111, 143, 0.18);
}

.ops-section-label {
    display: flex;
    align-items: center;
    gap: 4px;

    font-size: 16px;
    font-weight: 600;
    color: #222;   /* black/dark text */
}

.ops-section-icon svg {
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15));
}

.ops-section-label {
    letter-spacing: 0.2px;
}
.ops-topnav a {
    margin-left: 16px;
    color: #005eb8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.ops-topnav a:hover {
    text-decoration: underline;
}

.ops-content p,
.ops-content li {
    font-size: 15px;
    line-height: 1.45;
    color: #000;
}

.ops-content td,
.ops-content th {
    font-size: 15px;
}

.ops-content a {
    color: #005eb8;
    font-weight: 600;
    font-size: 13px;   /* or try 13px */
    text-decoration: none;
}

.ops-content a:hover {
    text-decoration: underline;
}

.ops-content .ops-feature-link {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin: 18px 0 26px 0;
}

.ops-content input[type="submit"],
.ops-content input[type="reset"],
.ops-content button[type="submit"] {
    background: #3a3a3a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 14px;
    cursor: pointer;
}

.ops-content input[type="submit"]:hover,
.ops-content input[type="reset"]:hover,
.ops-content button[type="submit"]:hover,
.ops-login-panel input[type="submit"]:hover,
.ops-login-panel button[type="submit"]:hover {
    background: #242424;
}

.ops-reset-button {
    background: #777 !important;
}

/* Modern full-width chaplain menu */
.ops-content {
    display: block;
}

.ops-chaplain-menu {
	padding-top: 20px;
    width: 100%;
    max-width: 900px;   /* keeps it from getting too wide on big screens */
    margin: 0 auto;
}

.ops-chaplain-menu h2 {
    text-align: center;
    margin: 0 0 28px 0;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.ops-menu-message {
    max-width: 900px;
    margin: 0 auto 22px auto;
    padding: 10px 14px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    text-align: center;
}

.ops-menu-section-title {
    font-size: 14px;
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ops-menu-list {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.ops-menu-list li {
    margin: 0 0 10px 0;
    padding: 0;
}

.ops-menu-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    min-height: 42px;   /* was 48 */
    padding: 0 12px;

    background: #2f348b;
    color: #ffffff;

    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
	box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    line-height: 1.2;
}

.ops-menu-list a:hover {
    background: #252a73;
    color: #ffffff;
    text-decoration: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.ops-menu-list a:active {
    transform: translateY(1px);
}

.ops-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
	margin-right: 2px;
    height: 18px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

/* ==========================
   LEADER DIRECTORY
========================== */

.directory-title {
    font-size: 22px;
    margin-top: 18px;
    margin-bottom: 4px;
}

.directory-subtitle {
    font-size: 20px;
    color: #555;
    margin-top: 16px;
    margin-bottom: 24px;
}

.leader-directory {
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.team-block {
    margin-bottom: 18px;
    background: #ffffff;
    border: 1px solid #000000;
}

.team-header {
    background: #000;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
}

.team-body {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.team-body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--team-logo);
    background-repeat: no-repeat;
    background-position: 80% center;
    background-size: 350px auto;
    opacity: 0.28;
    z-index: 0;
}

.leader-row {
    position: relative;
    z-index: 1;
    background: transparent;
}

.leader-row {
    padding: 12px 14px;
    border-top: 1px solid #a8a8a8;
}

.leader-row:first-child {
    border-top: none;
}

.leader-name {
    font-size: 17px;
    font-weight: bold;
    color: #222;
    margin-bottom: 4px;
}

.leader-contact {
    font-size: 14px;
    color: #444;
}

.leader-contact a {
    color: #005bbb;
    text-decoration: none;
}

.leader-contact a:hover {
    text-decoration: underline;
}

/* ==========================
   MASS EMAIL COMPOSE
========================== */

.ops-page-title.directory-title {
    margin-bottom: 24px !important;
}

.mass-email-wrap {
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.mass-email-card {
    margin-bottom: 20px;
}

.mass-email-section-title {
    background: #000;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 9px 12px;
    margin-bottom: 5px;
    border-radius: 6px 6px 0 0;
}

.mass-email-card-body {
    background: linear-gradient(#f7f7f7, #eeeeee);
    border: 1px solid #d4d4d4;
    border-radius: 0 0 6px 6px;
    padding: 16px;
}

.mass-email-section-subtitle {
    font-weight: bold;
    margin: 18px 0 8px 0;
}

.mass-email-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.mass-email-select-all {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.mass-email-divider-top {
    border-top: 1px solid #cfcfcf;
    margin: 4px 0 0px 0;
}

.mass-email-divider {
    border-top: 1px solid #cfcfcf;
    margin: 10px 0;
}
.mass-email-audience-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.mass-email-checkbox-list label {
    display: block;
    margin-bottom: 8px;
}

.mass-email-label {
    display: block;
    font-weight: bold;
    margin: 12px 0 5px 0;
}

.mass-email-input {
    width: 100%;
    max-width: 100%;
    height: 36px;
    box-sizing: border-box;
    padding: 6px 8px;
}

.mass-email-file {
    display: block;
    margin-bottom: 8px;
}

.mass-email-options {
    margin-top: 14px;
}

.mass-email-options label {
    display: block;
    margin-bottom: 8px;
}

.mass-email-actions {
    text-align: center;
    margin: 22px 0 30px 0;
}

.mass-email-actions input {
    margin: 0 5px;
}

/* This forces the length of the Subject and CC text areas....  */
.mass-email-card-body input.mass-email-input,
.ops-content .mass-email-card-body input.mass-email-input {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
}

/* ==========================
   MOBILE
========================== */

@media screen and (max-width: 700px) {

    .team-header {
        font-size: 18px;
    }

    .leader-name {
        font-size: 16px;
    }

    .leader-contact {
        font-size: 13px;
        line-height: 1.5;
    }

}

/* =========================================
   STANDARD OPS DATA TABLES
========================================= */

.ops-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 2px;
    border-radius: 6px;
    overflow: hidden;
}

/* Table headers */
.ops-data-table th {
    background-color: #404040;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 7px 10px;
    border: none;
}

/* Table cells */
.ops-data-table td {
    padding: 7px 10px;
    border: none;
}

.ops-preview-table {
    font-size: 13px;
}

.ops-data-table.ops-preview-table th {
    font-size: 13px;
}

.ops-data-table.ops-preview-table td {
    font-size: 13px;
}

/* Alternating rows */
.ops-data-table tr:nth-child(even) td {
    background-color: #ffffff;
}

.ops-data-table tr:nth-child(odd) td {
    background-color: #d8d8d8;
}
	
/* Ministry Reports Archive layout */
.ops-archive-page {
    margin-top: -14px;
    padding-top: 0;	
    width: 100%;
}

.ops-archive-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.ops-archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0 16px 0;
}

.ops-archive-toolbar-left {
    display: flex;
    align-items: center;
}

.ops-archive-toolbar-right {
    display: flex;
    align-items: center;
}

.ops-toolbar-link {
    font-size: 15px;
    text-decoration: none;
}

.ops-toolbar-link:hover {
    text-decoration: underline;
}

.ops-inline-form {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ops-inline-label {
    font-weight: 700;
}

.ops-archive-table {
    width: 100%;
}

/* Rounded outer corners */
.ops-data-table tr:first-child th:first-child {
    border-top-left-radius: 6px;
}

.ops-data-table tr:first-child th:last-child {
    border-top-right-radius: 6px;
}

.ops-data-table tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}

.ops-data-table tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}

/* =========================================
   Baseball Chapel Application - Desktop
========================================= */

.ops-application-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 4px;
    border: none;
}

.ops-application-table th,
.ops-application-section {
    background: #242424;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 10px;
    text-align: left;
    border: none;
}

.ops-application-table input[type="text"],
.ops-application-table input[type="password"],
.ops-application-table select {
    width: 260px;
    max-width: 100%;
    box-sizing: border-box;
}

/*.ops-application-table textarea {
    width: 420px;
    max-width: 100%;
    box-sizing: border-box;
} */

.ops-application-table td {
    background: #e2e2e2;
    padding: 9px 12px;
    border: none;
    vertical-align: top;
}

.ops-application-table .label-cell {
    background: #d8d8d2;
    font-weight: 700;
    text-align: right;
    width: 260px;
}

.ops-application-table .small {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.ops-application-table .smallbold {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.ops-application-table .smaller {
    font-size: 11px;
    font-weight: 200;
    line-height: 1.0;
}

.ops-content a.ops-exit-button,
a.ops-exit-button {
    display: inline-block !important;
    margin-top: 12px !important;
    padding: 8px 22px !important;

    background: #3a3a3a !important;
    color: #ffffff !important;

    border-radius: 5px !important;
    border: none !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.ops-content a.ops-exit-button:hover,
a.ops-exit-button:hover {
    background: #242424 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* =========================================
   REPORTS ARCHIVE PAGE HELPERS
========================================= */

@media (max-width: 700px) {
    .ops-content-inner {
		margin-top: 0px;
        padding-top: 0px;
    }

    .ops-header {
        height: 120px;
    }
	
	.ops-section-title {
    font-size: 14px;
    margin: 26px 0 8px 0;
}

    .ops-logo {
        max-height: 110px;
    }

    .ops-topnav {
        height: 54px;
        padding: 0 14px;
        font-size: 16px;
    }

    .ops-topnav a {
        font-size: 15px;
    }

    .ops-content {
        padding: 0px 16px 20px 16px;
        overflow-x: visible;
        box-sizing: border-box;
    }

    .ops-content td,
    .ops-content th,
    .ops-table-header {
        font-size: 15px;
    }

    .ops-data-table th,
    .ops-data-table td {
        font-size: 14px;
        padding: 6px 5px;
    }

    .ops-chaplain-menu {
        padding: 18px 8px 36px 8px;
        box-sizing: border-box;
    }

    .ops-chaplain-menu h2 {
        font-size: 26px !important;
        margin-bottom: 22px !important;
    }

    .ops-menu-section-title {
        font-size: 15px !important;
        letter-spacing: 0.4px !important;
        margin: 16px 0 8px 0 !important;
    }

    .ops-menu-list {
        margin: 0 0 18px 0;
    }

    .ops-menu-list li {
        margin-bottom: 7px;
    }

    .ops-chaplain-menu .ops-menu-list a { 
        min-height: 48px !important;
        height: 48px !important;
        padding: 6px 8px !important;
        font-size: 14px !important;
        line-height: 1.1 !important;
    }

    .ops-chaplain-menu .ops-menu-icon {
        width: 18px !important;
        min-width: 18px !important;
        height: 17px !important;
        font-size: 18px !important;
    }
	
	.ops-data-table-wrapper {
    width: 100%;
    overflow-x: auto;
    display: flex;
    justify-content: center;
		
	}

    .ops-data-table {
        width: 96%;
        margin: 0 auto;
    }
	
    /* Ministry Reports Archive mobile layout */
    .ops-archive-page {
        margin-top: -14px;
        padding-top: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .ops-archive-content {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 6px; /* table width... */
        box-sizing: border-box;
    }

    .ops-data-table-wrapper {
        width: 100%;
        overflow-x: auto;
    }

    .ops-data-table.ops-archive-table {
        width: 100%;
        margin: 0 auto;
    }

   .ops-archive-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
	
        .ops-inline-form {
            display: flex;
            align-items: center;
            gap: 6px;
        }

    .ops-inline-label {
        font-weight: 700;
    }
	
/* =========================================
   Baseball Chapel Application - Mobile
========================================= */

    .ops-application-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0 8px 20px 8px;
        box-sizing: border-box;
    }

    .ops-application-table {
        width: 760px;
        min-width: 760px;
        max-width: none;
        margin: 0;
        border-spacing: 3px;
    }

    .ops-application-table th,
    .ops-application-section {
        font-size: 14px;
        padding: 8px;
    }

    .ops-application-table td {
        font-size: 14px;
        padding: 8px;
    }

    .ops-application-table .label-cell {
        width: 220px;
        font-size: 14px;
    }

    .ops-application-table input[type="text"],
    .ops-application-table input[type="password"],
    .ops-application-table select {
        width: 240px;
    }

    .ops-application-table textarea {
        width: 360px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .ops-application-table .small {
        font-size: 12px;
        line-height: 1.35;
    }

    .ops-application-table .smallbold {
        font-size: 13px;
        line-height: 1.3;
    }

    .ops-application-table .smaller {
        font-size: 11px;
        line-height: 1.2;
    }
}

/* ==========================
   MOBILE PORTRAIT
========================== */

@media screen and (max-width: 900px) and (orientation: portrait) {

    .team-header {
        font-size: 18px;
    }

    .leader-name {
        font-size: 16px;
    }

    .leader-contact {
        font-size: 13px;
        line-height: 1.5;
    }

    .team-body::before {
        inset: 0 -30px 0 0 !important;
        background-size: 200px auto !important;
        background-position: 92% center !important;
        opacity: 0.18 !important;
    }

}

/* =========================================
   MOBILE STYLING - Landscape
========================================= */
@media (max-width: 900px) and (orientation: landscape) {

    .ops-header {
        height: 90px;
    }

    .ops-logo {
        max-height: 82px;
    }

    .ops-topnav {
        height: 46px;
        font-size: 15px;
    }

    .ops-data-table th,
    .ops-data-table td {
        font-size: 14px;
        padding: 6px 6px;
    }

    .ops-chaplain-menu {
        padding-top: 18px;
    }

    .ops-chaplain-menu h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .ops-menu-list a {
        min-height: 48px;
        font-size: 16px;
    }
	
    .team-header {
        font-size: 18px;
    }

    .leader-name {
        font-size: 16px;
    }

    .leader-contact {
        font-size: 13px;
        line-height: 1.5;
    }

    .team-body::before {

        inset: 0 -40px 0 0 !important;

        background-size: 300px auto !important;

        background-position: 80% center !important;

        opacity: 0.18 !important;
    }
	
}
