﻿
.single-col {
    clear: both;
    width: 95%;
    margin: 0 auto;
}

.headerleft {
    float: left;
    font-family: Inter;
    font-style: normal;
}

.headerleft select {
    display: flex;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #D5D7DA;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    width: 100%; /* Ensure it takes full width */
    -webkit-appearance: none; /* Remove default arrow for Chrome/Safari */
    -moz-appearance: none; /* Remove default arrow for Firefox */
    appearance: none; /* Remove default arrow */
    background-image: url('../img/chevron-down.svg'); /* Custom arrow image referenced relative to the CSS file */
    background-repeat: no-repeat;
    background-position: right 12px center; /* Position the arrow */
    background-size: 16px; /* Size the arrow image */
    padding-right: 32px; /* Make space for the arrow so text doesn't overlap */
    cursor: pointer;
    /* Text styling */
    overflow: hidden;
    color: #717680;
    text-overflow: ellipsis;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.headerright {
    font-weight: bold;
    font-size: 1.2em;
    color: #102e69;
    text-align: right;
    float: right;
    position: relative;
    margin-top: 20px;
}

.contractName {
    color: #181D27;
    /* Display xs/Semibold */
    font-size: 24px;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
}

.contractStatusDetails {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 5px;
}

.contractStatusDetails label{
    margin-bottom: inherit !important;
    max-width: inherit !important;
    font-weight: inherit !important;
}

.contractStatusDetails td
{
    padding-right: 10px;
}

.sub-nav-container {
    padding-top: 3px;
    padding-bottom: 3px;
    display: flex;
    align-items: center;
    align-self: stretch;
    clear: both;
    background-color: #E0EAFF;
    border-radius: 6px;
    margin-bottom: 24px;
}

.sub-nav-container ul {
    list-style: none;
    display: flex;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 0px;
    margin-left: -3px;
}

.sub-nav li {
    display: inline;
    padding-left: 8px;
}

.sub-nav li a {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
    text-decoration: none;
    color: #717680;
    font-weight: 600;
}

.sub-nav li a.complete {
    background-image: url(../img/check-circle-green.svg);
    background-position-x: 10px;
    background-position-y: 10px;
    background-repeat: no-repeat;
    padding-left: 30px;
}

.sub-nav li a.incomplete {
    background-image: url(../img/alert-triangle.svg);
    background-position-x: 10px;
    background-position-y: 10px;
    background-repeat: no-repeat;
    padding-left: 30px;
}

.sub-nav li a.active {
    background-color: #fff;
    text-decoration: none;
    border-bottom: 0px;
    font-weight: bold;
    color: #414651;
    border-radius:6px;
}

    .sub-nav li a:hover {
        background-color: #fff;
        text-decoration: none;
        border-bottom: 0px;
        border-radius: 6px;
    }

.contractHeaderTable{
    float:right;
}

.contractHeaderTable td{
    padding-left: 10px;
}

.inactiveTab {
    text-decoration: none;
    cursor:default;
    pointer-events: none;
    color: lightgrey !important;
    font-weight: 300 !important;
}

.inactiveTab:hover {
    background-color: inherit !important;
    font-weight: 300 !important;
}