body{
    margin: 0;
    padding: 0;
    /* background: url('../images/login_page_background.png');
    background-size: cover;
    background-position: center; */
    font-family: sans-serif;
}
.login_page_container{
    background: url('../images/login_page_background.png');
    background-size: cover;
    background-position: center;
}
.loginbox{
    /* width: 320px; */
    height: 420px;
    background: #353535;
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    padding: 70px 30px;
}

.avatar{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

h1{
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}

.loginbox p{
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.loginbox input{
    width: 100%;
    margin-bottom: 20px;
}

.loginbox input[type="text"], input[type="password"]
{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
}

.loginbox input[type="submit"]
{
    border: none;
    outline: none;
    height: 40px;
    background: #fb2525;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
}

.loginbox input[type="submit"]:hover
{
    cursor: pointer;
    background: #ffc107;
    color: #000;   
}

.loginbox a{
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: darkgrey;
}

.loginbox a:hover
{
    color: #ffc107;
}

.logo img{
    max-width:150px;
    height:auto;
}

.home-page-block .col-md{
    border: 1px solid #eee;
    padding: 10px;
    background-color: #33b5e5;
    color: #fff;
}

.child-container {
    border: 1px solid #eee;
    padding-top: 10px;
}

.alertMessage {
    padding: 20px;
    width: 75%;
    font-size: 20px;
    margin: auto;
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 25%) 0px 5px 10px 2px;
}

.closeBtn {
    float: right;
    margin-left: 18px;
    font-size: 30px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.4s;
}

/* ------------------------------------------------------- operation_edit.html STARTS ---------------------------------------------- */
.operationUpdateBlock{
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.operationHeader{
    font-size: 28px;
    font-weight: 600;
    color: #343434;
}

.invoiceTable th{
    background-color: #515151;
    color: #efefef;
    padding: 3px 5px;
    text-align: center;
}
.invoiceTable th:first-of-type{
    border-top-left-radius: 5px ;
}
.invoiceTable th:last-of-type{
    border-top-right-radius: 5px ;
}
.invoiceTable td{
border: 1px solid #787878;
text-align: center;
}

.invoiceTable input{
    padding: 3px 5px;
    color: #676767;
    border: none;
    text-align: center;
    width: 95%;
    margin: 1px  5px;
}

.invoiceTable input::placeholder{
    color: #878787;
    font-size: 12px;
}

.invoiceTable input:focus{
    border: none;
}

.invoiceTable{
 width: 100%;
}

.invoiceTblFooter{
        width: 100%;
        display: flex;
        justify-content: end;
}
.invoiceTblFooter button{
    margin: 5px 0px;
    padding: 3px 12px;
    border-radius: 3px;
    border: 1px solid #515151;
    color: #515151;
    background-color: #ffffff;
    transition: color 0.3s ease-in, background-color 0.3s ease-in;
}

.invoiceTblFooter button:hover{
    color: #efefef;
    background-color: #515151;
}

.operationRemove{
    border: none;
    padding: 1px 5px;
    background-color: transparent;
    color: #cd0000;
    font-size: 20px;
    margin: 1px 5px;
    font-weight: 600;
}
/* ------------------------------------------------------- operation_edit.html ENDS ---------------------------------------------- */

