﻿
body {
    background-color: #b1aba5;
    font-family: arial, sans-serif;
}

button, .form-ext, .form-submit {
    background-color: #006080;
    color: #ffffff;
    min-width: 120px;
    height: 33px;
    margin: 5px;
    /*padding: 6px;*/
}

button:disabled, .form-ext:disabled, .form-submit:disabled {
    background-color: #004357;
    color: #b1aba5;
}

.form-ext {
}

.form-submit {
    float: right;
}

button:hover {
    background-color: #004357;
}

input {
    border-radius: 3px;
    margin: 3px;
    padding: 3px;
    font-family: Arial;
    font-size: 15px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #ddddddd;
}

rq {
    color: red;
}

.add-delete {
    /* display:none; */
}

.delete-btn {
    background-color: #a8281a;
}

.grid-nameplate {
    display: grid;
    grid-template-columns: 140px 15% 15%;
}

.hdr {
   /* background-color: #004357;*/
    
    background-color: #3E7D8F; color: white; "
}

.help {
    font-style: italic;
    font-weight: bold;
}

.modal {
    background-color: #b1aba5;
    border: 1px solid #000000;
    border-radius: 6px;
    box-shadow: 3px 3px 3px #808080;
    display: none;
    position: fixed;
    /*right: 30px;
    bottom: 160px;*/
    width: 300px;
    height: auto;
    padding: 6px;
    text-align: center;
    z-index: 1;
}

    .modal h4 {
        border-radius: 3px 3px 0px 0px;
        margin: -6px;
        padding: 3px;
        background-color: #d32f2f;
        color: #ffffff;
        font-size: 18px;
    }

.modal-option {
    display: grid;
    grid-template-columns: 50% 50%;
}

    .modal-option button {
        padding: 3px;
        margin: 1px;
    }

.modal-exit {
    background-color: #62564b;
    border: none;
    border-radius: 3px;
    width: 100%;
}

    .modal-exit:hover {
        background-color: #3B342D;
    }

.modal-warning {
    background-color: #fff9d1;
    border-radius: 3px 3px 0px 0px;
    margin: -6px;
}

.pg-section {
    background-color: #f5f5f5;
    border: 1px solid #000000;
    border-radius: 6px;
    margin: 6px;
    padding: 16px;
}

.content-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F5F5F5;
    padding: .5em;
    overflow: hidden;
}

.content-wrap::before {
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    left: 0;
    content: "";
    background-color: #0288D1;
    height: 2px;
}

.icon1 {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    color: #f5f5f5;
    border: 2px solid #0288D1;
    border-radius: 50%;
    padding: .5rem;
    background: #0288D1;
    box-shadow: 0 0 0 0.5em #F5F5F5;
}