/* ── Header ───────────────────────────────────────────── */

.nc-header {
    background: #fff;
}
.nc-branding {
    background: #f5f7f9;
    border-radius: 6px;
}
.nc-user-pill {
    background: #f0f4f8;
    border: 1px solid #d5dce4;
    border-radius: 50px;
    padding: 3px 14px;
    font-size: 0.82rem;
    color: #3a4a5a;
    transition: background 0.15s;
}
.nc-user-pill:hover {
    background: #e4eaf0;
}
.nc-user-logout {
    color: #8a95a2;
    text-decoration: none;
    border-left: 1px solid #d0d7de;
    padding-left: 8px;
    margin-left: 4px;
    transition: color 0.15s;
}
.nc-user-logout:hover {
    color: #c0392b;
}
.nc-heading-text {
    color: #1e2d3d;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.nc-subheading {
    color: #6c8296;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}
.nc-header-rule {
    height: 3px;
    background: linear-gradient(90deg, #3ba0a0 0%, #e8c547 100%);
    border-radius: 2px;
}

/* ── Login ───────────────────────────────────────────── */

.nc-login-card {
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 10px;
    padding: 2rem 2rem 1.8rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nc-login-icon {
    font-size: 2.2rem;
    color: #3ba0a0;
}
.nc-login-card .input-group-text {
    background: #f5f7f9;
    border-right: none;
    color: #6c8296;
}
.nc-login-card .form-control {
    border-left: none;
}
.nc-login-card .form-control:focus {
    box-shadow: none;
    border-color: #86b7fe;
}
.nc-login-card .form-control:focus + .input-group-text,
.nc-login-card .input-group:focus-within .input-group-text {
    border-color: #86b7fe;
}
.nc-login-card .btn-primary {
    background: #3ba0a0;
    border-color: #3ba0a0;
}
.nc-login-card .btn-primary:hover {
    background: #2e8a8a;
    border-color: #2e8a8a;
}

/* ── Footer ──────────────────────────────────────────── */

.nc-footer {
    border-top: 1px solid #dee2e6;
}
.nc-footer-link {
    color: #6c757d;
    font-size: 0.85rem;
    text-decoration: none;
}
.nc-footer-link:hover {
    color: #3ba0a0;
}

/* ── Overlays ────────────────────────────────────────── */

.confirm-bgr{
    background-color: rgba(0, 0, 0, 0.3);
    bottom: 0;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    display: none;

}

.certview-panel{
    float: left;
    left: 20%;
    position: absolute;
    top: 3%;
    width: 60%;    
}

.confirm-panel{
    float: left;
    left: 47%;
    position: absolute;
    top: 20%;
    width: auto;
}

textarea.expandable {
    height:35px;
    font-family: monospace;
    font-size: 0.82rem;
    word-break: break-all;
    white-space: pre-wrap;
    -webkit-transition: all 0.5s ease-in-out;
}

textarea.expandable:focus {
    height:calc(100% - 90px);
    -webkit-transition: all 0.8s ease-in-out;
}

.panel-300:hover, .panel-300:focus {
    min-height: 300px;    
}

textarea.expandable + textarea.expandable:hover, textarea.expandable + textarea.expandable:focus {
    height:calc(100% - 90px)	
}

td.selectedTerr {
    background-color: #000;
    color: white
}

td.selectableTerr:hover {
    background-color: gray;    
}

.delete-image:hover{
    content: url('../img/delete_dgray.png');
}
.delete-image:active{
    content: url('../img/delete_ddgray.png');
}

td.overviewHead {
    color: white;
    background-color: #7f0927;
}
td.mdlHead {
    color: white;
    background-color: #00979D;
}
td.mdlPropCol {
    color: #1b6d85;
    font-weight: bold;
    width: 120px;
}

td.mdParamCol {
    color:#c57502;
    width: 110px;
}

td.diffParam {
    color: #9B703F;
}

td.removeData{
    color: #ca402b;
}

td.addData{
    color: #1b6d85;
}

div.wrapDiv{
    word-wrap: break-word;         /* All browsers since IE 5.5+ */
    overflow-wrap: break-word;     /* Renamed property in CSS3 draft spec */
    width: 100%;
}

table.diff-table{
    table-layout: fixed;
}

.overview-info-btn{
    width: 60px;
}

.tableHeadDef{
    background-color: #002451;
    color: whitesmoke;
    font-weight: bolder;
    font-size: medium;
}

.mdLocValidParam{
}
.mdLocInvalidParam{
    color: #7f0927;
    text-decoration: line-through;
}
.mdLocNocheckParam{
    color: #7f5006;
}
.mdLocUnknownParam{
    color: #8f8f8f;
    text-decoration: line-through;
}