﻿
@font-face {
    font-family: Onani;
    src: url(/fonts/ONANRG.woff2) format('woff2');
    font-weight:400;
    /* Exclude quotes (" ' \u201C-\u201D \u2018-\u2019) and dashes (- \u2013 \u2014)
       so the browser falls back to Arial for those glyphs */
    unicode-range: U+0020-0021, U+0023-0026, U+0028-002C, U+002E-007E;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
    accent-color: #FF9900;
}

#leftNavContainer a,
#leftNavContainer .nav-logoff {
    font-family: Onani;
    color:#fff;
    text-decoration:none;
    display:block;
    margin: 0 0 2px 0;
    padding: 2px 2px 2px 2px;
    font-size: 10pt;
    white-space: nowrap;
}

#leftNavContainer .nav-logoff {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 10pt;
    text-align: left;
    width: 100%;
    box-shadow: none;
}

.text-danger {
    color:red;
}

/* --- Data grid --- */
.Grid {
    border-collapse: collapse;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.GridHeader {
    color: #fff;
    background-color: #333;
    font-family: Onani;
    letter-spacing: 0.5px;
}
.GridHeader td {
    padding: 10px 12px;
    border-bottom: 3px solid #FF9900;
    border-right: 1px solid #555;
}

.GridHeader td:last-child {
    border-right: none;
}
.GridItem {
    background-color: #fff;
}
.GridAlternatingItem {
    background-color: #f8f8f8;
}
.GridItem td,
.GridAlternatingItem td {
    padding: 10px 12px;
    border-bottom: 1px solid #e0e0e0;
}
.Grid td:last-child {
    text-align: center;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="month"],
textarea,
select {
    border-radius: 6px;
    border: 1px solid #cccccc;
    font-size: 1rem;
    padding: 0.5rem 0.875rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
textarea:focus,
select:focus {
    border-color: #FF9900;
    box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.25);
    outline: none;
}

.btn,
button,
input[type="submit"],
input[type="button"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 6px;
    border: none;
    padding: 0.5rem 1.25rem;
    margin: 10px 10px 10px 0;
    background-color: #FF9900;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: background-color 0.15s, box-shadow 0.15s;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #e08800;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.btn:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
    background-color: #cc7a00;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

input.input-validation-error {
    border: 1px solid red;
}

.title {
    display:inline-block;
    min-height: 35px;
    min-width: 215px;
    background: url(/Content/images/headers/HeaderBG.png) no-repeat bottom left;
    font-size: 1.4rem;
    font-family:Onani;
    letter-spacing: 1px;
    color: #ff9900;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    -webkit-text-stroke: -1px black;
}

.title-wrapped {
    background-image: none;
    min-height: 0;
}

.section-header {
    font-family: Onani;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: #333;
    border-bottom: 3px solid #FF9900;
    padding-bottom: 8px;
    margin: 30px 0 15px 0;
    text-align: left;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FF9900;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    vertical-align: middle;
}

a:link, a:visited {
    color: #ff9900;
}

a.btn:link, a.btn:visited {
    color: #fff;
    text-decoration: none;
}

/* --- Season banner --- */
.season-banner {
    background: #FF9900;
    color: #fff;
    font-family: Onani;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 12px 16px;
    border-radius: 6px;
    margin: 20px 0 0 0;
}

.season-banner a:link,
.season-banner a:visited {
    color: #fff;
    text-decoration: underline;
}

/* --- Callout box --- */
.callout-box {
    background: #fff8ee;
    border-left: 4px solid #FF9900;
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.callout-box strong {
    color: #333;
}

/* --- Stat cards --- */
.stat-cards {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    justify-content: center;
}

.stat-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 3px solid #FF9900;
    border-radius: 6px;
    padding: 18px 16px;
    text-align: center;
    flex: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.stat-card .number {
    font-family: Onani;
    font-size: 1.8rem;
    color: #FF9900;
    display: block;
    margin-bottom: 4px;
}

.stat-card .label {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
}

/* --- Comparison table --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.comparison-table th {
    background: #FF9900;
    color: #fff;
    font-family: Onani;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    text-align: left;
}

.comparison-table th:first-child {
    border-radius: 6px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 6px 0 0;
}

.comparison-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

/* Override .table-scroll td defaults (nowrap, borders) for comparison table */
.table-scroll .comparison-table td,
.table-scroll .comparison-table th {
    white-space: normal;
    border-left: none;
    border-right: none;
    border-top: none;
    font-size: 0.95rem;
}

.comparison-table tr:nth-child(even) td {
    background: #fafafa;
}

.comparison-table .check {
    color: #2e7d32;
    font-weight: bold;
}

.comparison-table .none {
    color: #999;
}

/* --- Promo link --- */
.promo-link {
    display: block;
    background: #fff8ee;
    border: 2px solid #FF9900;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 24px 0;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: background-color 0.15s, box-shadow 0.15s;
}

.promo-link:hover {
    background: #fff0d9;
    box-shadow: 0 2px 8px rgba(255,153,0,0.2);
}

.promo-link:link, .promo-link:visited {
    color: #333;
    text-decoration: none;
}

.promo-link .arrow {
    color: #FF9900;
    font-weight: bold;
    margin-left: 6px;
}