﻿/*---------------------------------------Login------------------------------------*/
.index_body {
    background-color: rgba(240, 242, 245, 0.7);
    background-image: url('../Images/adrian-infernus-GLf7bAwCdYg-unsplash.jpg');
    background-size: cover;
    background-position: 100%;
    height: 100vh;
    text-rendering: optimizeLegibility;
}
body {
    margin: 0px;
    background-color: #fff !important;
}
.log_form {
    background-color: #ffffff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    width: 402px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    height: 440px;
    padding: 25px;
    border-radius: 8px;
    margin-left: 550px;
    position: absolute;
    top: 110px;
}

.title {
    font-size: 35px;
    font-weight: 800;
    margin-top: -20px;
}

.input-field {
    position: relative;
    width: 100%;
}

.input {
    margin-top: 8px;
    width: 100%;
    outline: none;
    border-radius: 8px;
    height: 50px;
    border: 1.5px solid #ecedec;
    background: transparent;
    padding-left: 10px;
    font-size: 17px;
}

    .input:focus {
        border: 1.5px solid #2d79f3;
    }

.input-field .label {
    position: absolute;
    top: 25px;
    left: 15px;
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
    font-size: 14px;
}

.input-field .input:focus ~ .label,
.input-field .input:valid ~ .label {
    top: 5px;
    left: 5px;
    font-size: 12px;
    color: #2d79f3;
    background-color: #ffffff;
    padding-left: 5px;
    padding-right: 5px;
}

.submit-btn {
    margin-top: 30px;
    height: 55px;
    background: #f2f2f2;
    border-radius: 11px;
    border: 0;
    outline: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(180deg, #363636 0%, #1b1b1b 50%, #000000 100%);
    box-shadow: 0px 0px 0px 0px #ffffff, 0px 0px 0px 0px #000000;
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
    cursor: pointer;
}

    .submit-btn:hover {
        box-shadow: 0px 0px 0px 2px #ffffff, 0px 0px 0px 4px #0000003a;
    }
.ftr {
    margin: 20px 0px 0px 1145px;
    font-size: 13px;
    font-family: inherit;
    color: #727070;
    position: absolute;
}


.authfy-heading {
    font-family: Arial, sans-serif; 
    text-align: center; 
    margin-top: 20px;
}

    .authfy-heading p {
        font-size: 14px; 
        color: #333;
        margin: 0; 
    }

    .authfy-heading a.lnk-toggler {
        color: #007BFF;
        text-decoration: none; 
        font-weight: bold; 
    }

        .authfy-heading a.lnk-toggler:hover {
            text-decoration: underline; 
            color: #0056b3;
        }
/*------------------------------------------Signup---------------------------------------*/
.signup_b {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.formbg1 {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 550px;
    height: 550px;
}

.signhd {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333333;
}

.formbg-inner1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row_flex {
    display: flex;
    justify-content: space-between;
}

.common_row {
    display: flex;
    flex-direction: column;
    width: 45%;
}

    .common_row label {
        font-weight: bold;
        margin-bottom: 5px;
        color: #8d8585;
        font-size: 15px;
    }

    .common_row input,
    .common_row select,
    .common_row textarea {
        padding: 8px;
        border: 1px solid #cccccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 25px;
    }

        .common_row input[type="text"],
        .common_row input[type="email"],
        .common_row input[type="password"] {
            width: 100%;
        }

.signup_btn {
    text-align: center;
}

.sign_btn {
    background-color: #4CAF50;
    color: white;
    padding: 8px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 12px;
}

    .sign_btn:hover {
        background-color: #45a049;
    }

.footer_link {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

    .footer_link a {
        color: #4CAF50;
        text-decoration: none;
        font-size: 16px;
    }

        .footer_link a:hover {
            text-decoration: underline;
        }
/*------------------------------------------Sidebar---------------------------------------*/

:root {
    --background: #edeff0;
    --navbar-width: 256px;
    --navbar-width-min: 80px;
    /*    --navbar-dark-primary: #18283b;*/
    --navbar-dark-secondary: #2c3e50;
    --navbar-light-primary: #f5f6fa;
    --navbar-light-secondary: #8392a5;
}



#nav-toggle:checked ~ #nav-header {
    width: calc(var(--navbar-width-min) - 16px);
}

#nav-toggle:checked ~ #nav-content, #nav-toggle:checked ~ #nav-footer {
    width: var(--navbar-width-min);
}

#nav-toggle:checked ~ #nav-header #nav-title {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
}

#nav-toggle:checked ~ #nav-header label[for=nav-toggle] {
    left: calc(50% - 8px);
    transform: translate(-50%);
}

#nav-toggle:checked ~ #nav-header #nav-toggle-burger {
    background: var(--navbar-light-primary);
}

    #nav-toggle:checked ~ #nav-header #nav-toggle-burger:before, #nav-toggle:checked ~ #nav-header #nav-toggle-burger::after {
        width: 16px;
        background: var(--navbar-light-secondary);
        transform: translate(0, 0) rotate(0deg);
    }

#nav-toggle:checked ~ #nav-content .nav-button span {
    opacity: 0;
    transition: opacity 0.1s;
}

#nav-toggle:checked ~ #nav-content .nav-button .fas {
    min-width: calc(100% - 16px);
}

#nav-toggle:checked ~ #nav-footer #nav-footer-avatar {
    margin-left: 0;
    left: 50%;
    transform: translate(-50%);
}

#nav-toggle:checked ~ #nav-footer #nav-footer-titlebox, #nav-toggle:checked ~ #nav-footer label[for=nav-footer-toggle] {
    opacity: 0;
    transition: opacity 0.1s;
    pointer-events: none;
}

#nav-bar {
    position: fixed;
    top: 0vw;
    height: calc(100% - 0vw);
    background: #494ca2;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    color: var(--navbar-light-primary);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow: hidden;
    user-select: none;
}

    #nav-bar hr {
        margin: 0;
        position: relative;
        left: 16px;
        width: calc(100% - 32px);
        border: none;
        border-top: solid 1px var(--navbar-dark-secondary);
    }

    #nav-bar input[type=checkbox] {
        display: none;
    }

#nav-header {
    position: relative;
    width: var(--navbar-width);
    left: 16px;
    width: calc(var(--navbar-width) - 16px);
    min-height: 80px;
    background: #494ca2;
    border-radius: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    transition: width 0.2s;
}

    #nav-header hr {
        position: absolute;
        bottom: 0;
    }

#nav-title {
    font-size: 3rem !important;
    transition: opacity 1s;
    font-weight: 700;
    color: #fff;
    text-decoration:none;
}

label[for=nav-toggle] {
    position: absolute;
    right: 0;
    width: 3rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 90px;
}

#nav-toggle-burger {
    position: relative;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    transition: background 0.2s;
}

    #nav-toggle-burger:before, #nav-toggle-burger:after {
        content: "";
        position: absolute;
        top: -6px;
        width: 10px;
        height: 2px;
        background: var(--navbar-light-primary);
        border-radius: 99px;
        transform: translate(2px, 8px) rotate(30deg);
        transition: 0.2s;
    }

    #nav-toggle-burger:after {
        top: 6px;
        transform: translate(2px, -8px) rotate(-30deg);
    }

#nav-content {
    margin: 20px 0;
    padding: 16px 0;
    position: relative;
    flex: 1;
    width: var(--navbar-width);
    background: #494ca2;
    box-shadow: 0 0 0 16px var(--navbar-dark-primary);
    direction: rtl;
    overflow-x: hidden;
    transition: width 0.2s;
}

    #nav-content::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    #nav-content::-webkit-scrollbar-thumb {
        border-radius: 99px;
        background-color: #D62929;
    }

    #nav-content::-webkit-scrollbar-button {
        height: 16px;
    }

#nav-content-highlight {
    position: absolute;
    left: 16px;
    top: -70px;
    width: calc(100% - 16px);
    height: 54px;
    background: var(--background);
    background-attachment: fixed;
    border-radius: 16px 0 0 16px;
    transition: top 0.2s;
}

    #nav-content-highlight:before, #nav-content-highlight:after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 100%;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        box-shadow: 16px 16px var(--background);
    }

    #nav-content-highlight:after {
        top: 100%;
        box-shadow: 16px -16px var(--background);
    }

.nav-button {
    position: relative;
    margin-left: 16px;
    height: 54px;
    display: flex;
    align-items: center;
    color: #fff;
    direction: ltr;
    cursor: pointer;
    z-index: 1;
    transition: color 0.2s;
    font-size: 16px;
}

    .nav-button span {
        transition: opacity 1s;
        margin-left: 15px;
    }

    .nav-button .fas {
        transition: min-width 0.2s;
    }

    .nav-button:nth-of-type(1):hover {
        color: #464141;
        text-decoration: none;
    }

        .nav-button:nth-of-type(1):hover ~ #nav-content-highlight {
            top: 16px;
        }

    .nav-button:nth-of-type(2):hover {
        color: #464141;
        text-decoration: none;
    }

        .nav-button:nth-of-type(2):hover ~ #nav-content-highlight {
            top: 70px;
        }

    .nav-button:nth-of-type(3):hover {
        color: #464141;
        text-decoration: none;
    }

        .nav-button:nth-of-type(3):hover ~ #nav-content-highlight {
            top: 124px;
        }

    .nav-button:nth-of-type(4):hover {
        color: #464141;
        text-decoration: none;
    }

        .nav-button:nth-of-type(4):hover ~ #nav-content-highlight {
            top: 178px;
        }

    .nav-button:nth-of-type(5):hover {
        color: #464141;
        text-decoration: none;
    }

        .nav-button:nth-of-type(5):hover ~ #nav-content-highlight {
            top: 232px;
        }

    .nav-button:nth-of-type(6):hover {
        color: #464141;
        text-decoration: none;
    }

        .nav-button:nth-of-type(6):hover ~ #nav-content-highlight {
            top: 286px;
        }

    .nav-button:nth-of-type(7):hover {
        color: #464141;
        text-decoration: none;
    }

        .nav-button:nth-of-type(7):hover ~ #nav-content-highlight {
            top: 340px;
        }

    .nav-button:nth-of-type(8):hover {
        color: #464141;
        text-decoration: none;
    }

        .nav-button:nth-of-type(8):hover ~ #nav-content-highlight {
            top: 394px;
        }

#nav-bar .fas {
    min-width: 3rem;
    text-align: center;
}

#nav-footer {
    position: relative;
    /* width: var(--navbar-width);
    height: 54px;*/
    background: #445074;
    /*  border-radius: 16px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transition: width 0.2s, height 0.2s;*/
}

#nav-footer-heading {
    position: relative;
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
}

#nav-footer-avatar {
    position: relative;
    margin: 11px 0 11px 16px;
    left: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(0);
    transition: 0.2s;
}

    #nav-footer-avatar img {
        height: 100%;
    }

#nav-footer-titlebox {
    position: relative;
    margin-left: 16px;
    width: 10px;
    display: flex;
    flex-direction: column;
    transition: opacity 1s;
}
    #nav-footer-titlebox a{
        color:#fff;
        text-decoration:none;
    }


    label[for=nav-footer-toggle] {
        position: absolute;
        right: 0;
        width: 3rem;
        height: 100%;
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: transform 0.2s, opacity 0.2s;
    }

    #nav-footer-content::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    #nav-footer-content::-webkit-scrollbar-thumb {
        border-radius: 99px;
        background-color: #D62929;
    }

.custom_size{
    font-size:20px;
    color:#fff;
}
/*------------------------------------------Assign visit screen---------------------------------------*/

.main_container {
    width: 80%;
    margin-left: 210px;
    margin-bottom: 10px;
    padding: 35px;
    padding-left: 60px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: Arial, sans-serif;
}
    .main_container h2 {
        font-size: 24px;
        color: #605a5a;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 40px;
        font-family: Arial, sans-serif;
        font-weight: bold;
    }
    .main_container h3 {
        font-size: 18px;
        color: #0a3b95;
        font-family: Arial, sans-serif;
        font-weight: bold;
        margin: -10px 0px -10px -20px;
    }

.clock {
    font-size: 1.2em;
    margin: 10px 0;
    font-weight: bold;
}

.regdtlcontainer table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

.regdtlcontainer th {
    background-color: #445074;
    color: white;
    padding: 10px;
    text-align: left;
}

.regdtlcontainer tr {
    border-bottom: 1px solid #dee2e6;
}
  
    .regdtlcontainer tr:nth-child(odd) {
        background-color: #f8f9fa;
    }

.regdtlcontainer td {
    padding: 10px;
}

.regdtlcontainer tr:hover {
    background-color: #e2e6ea;
}

#dtls-dsply {
    margin-top: 20px;
}

    #dtls-dsply.hidden {
        display: none;
    }

/*------------Add-Button-------------*/

.button_add {
    position: relative;
    width: 80px;
    height: 35px;
    cursor: pointer;
    display: flex;
    border-radius: 5px;
    align-items: center;
    border: 1px solid #34974d;
    background-color: #494ca2;
}

.button_add, .button__icon, .button__text {
    transition: all 0.3s;
}

    .button_add .button__text {
        transform: translateX(10px);
        color: #fff;
        font-weight: 600;
    }

    .button_add .button__icon {
        position: absolute;
        transform: translateX(45px);
        height: 100%;
        width: 25px;
        background-color: #494ca2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .button_add .svg {
        width: 30px;
        stroke: #fff;
    }

    .button_add:hover {
        background: #494ca2;
    }

        .button_add:hover .button__text {
            color: transparent;
        }

        .button_add:hover .button__icon {
            width: 67px;
            transform: translateX(0);
        }

    .button_add:active .button__icon {
        background-color: #2e8644;
    }

    .button_add:active {
        border: 1px solid #2e8644;
    }
.btn_add {
    margin: 30px 285px 0px 0px;
}
.btn_confirm {
    border: none;
    color: #fff;
    background-image: linear-gradient(30deg, #30712f, #0add3d);
    border-radius: 5px;
    background-size: 100% auto;
    font-family: inherit;
    font-size: 15px;
    padding: 0.4em 1.0em;
    cursor: pointer;
}
    .btn_confirm:hover {
        background-position: right center;
        background-size: 200% auto;
        -webkit-animation: pulse 2s infinite;
        animation: pulse512 1.5s infinite;
    }

@keyframes pulse512 {
    0% {
        box-shadow: 0 0 0 0 #05bada66;
    }

    70% {
        box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
}
.btn_confirm_div {
    margin: 25px 0px 0px 730px;
}
/*------------------------------------------Add Observation---------------------------------------*/
.open-file {
    width: 350px;
    height: 40px;
    padding: 5px 10px;
    font-size: 14px;
}   

.file-wrapper {
    align-items: center;
    justify-content: center;
}

    .file-wrapper svg {
        width: 20px; 
        height: 20px; 
    }

    .file-wrapper .file-front {
        margin-left: 5px; 
    }
/*    -------------------------js_Button---------------------------*/
.button10 {
    background-color: #e83333;
    border: none;
    color: white;
    padding: 4px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

    .button10:hover {
        background-color: #b00a0a;
    }

.button11 {
    background-color: #e83333;
    border: none;
    color: white;
    padding: 4px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

    .button11:hover {
        background-color: #b00a0a;
    }
/*------------------------------------------------------------*/
.rpt_container {
    width: 105%;
    margin-left: 65px;
    margin-top: 20px;
    overflow: auto;
    padding: 35px;
    padding-left: 40px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: Arial, sans-serif;
}
.btn_gnt {
    margin: -60px 0px 0px 700px;
}
.btn_gnt1 {
    margin: 0px 0px 0px 700px;
}
/*----------------------------------------------Download button--------------------------------------------*/

.Download-button {
    display: flex;
    align-items: center;
    font-family: inherit;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 10px;
    color: white;
    background: rgb(75 104 196);
    border: none;
    box-shadow: 0 0.7em 1.5em -0.5em rgba(59, 48, 78, 0.527);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

    .Download-button svg {
        margin-right: 8px;
        width: 25px;
    }

    .Download-button:hover {
        box-shadow: 0 0.5em 1.5em -0.5em rgba(88, 71, 116, 0.627);
    }

    .Download-button:active {
        box-shadow: 0 0.3em 1em -0.5em rgba(88, 71, 116, 0.627);
    }

    .Download-button::before {
        content: "";
        width: 4px;
        height: 40%;
        background-color: white;
        position: absolute;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        left: 0;
        transition: all 0.2s;
    }

    .Download-button::after {
        content: "";
        width: 4px;
        height: 40%;
        background-color: white;
        position: absolute;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        right: 0;
        transition: all 0.2s;
    }

    .Download-button:hover::before,
    .Download-button:hover::after {
        height: 60%;
    }
/*----------------------------------------------Download button--------------------------------------------*/

.Btn {
    background-color: #498de8;
    border: none;
    color: white;
    padding: 5px 12px;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-left: 1010px;
}

    .Btn:hover {
        background-color: #366eba;
    }

/*    -----------------------------------------------------------------------------------------------------------*/

.dashboard_h {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 11px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
    margin-left: 100px;
}
/**----------------------Model custome promt box----------------------*/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 70%;
    margin: 25px 0px 0px 300px;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

#promptInput {
    min-width: 975px;
    height: 75px;
}

.btn_pop {
    margin: 0px 0px 0px 855px;
}

    .btn_pop button {
        padding: 4px 10px;
        font-size: 14px;
        cursor: pointer;
        border-radius: 2px;
        margin-left: 5px;
    }

.submit_pop {
    background-color: #4CAF50;
    color: white;
    border: none;
}

.cancel_pop {
    background-color: #f44336;
    color: white;
    border: none;
}

    .submit_pop:hover, .cancel_pop:hover {
        opacity: 0.8;
    }


/*   -----------------------------loading-----------------------*/
.loading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot-spinner {
    --uib-size: 5.0rem;
    --uib-speed: .9s;
    --uib-color: #183153;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

    .dot-spinner__dot::before {
        content: '';
        height: 20%;
        width: 20%;
        border-radius: 50%;
        background-color: #fff;
        transform: scale(0);
        opacity: 0.5;
        animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
        box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
    }

    .dot-spinner__dot:nth-child(2) {
        transform: rotate(45deg);
    }

        .dot-spinner__dot:nth-child(2)::before {
            animation-delay: calc(var(--uib-speed) * -0.875);
        }

    .dot-spinner__dot:nth-child(3) {
        transform: rotate(90deg);
    }

        .dot-spinner__dot:nth-child(3)::before {
            animation-delay: calc(var(--uib-speed) * -0.75);
        }

    .dot-spinner__dot:nth-child(4) {
        transform: rotate(135deg);
    }

        .dot-spinner__dot:nth-child(4)::before {
            animation-delay: calc(var(--uib-speed) * -0.625);
        }

    .dot-spinner__dot:nth-child(5) {
        transform: rotate(180deg);
    }

        .dot-spinner__dot:nth-child(5)::before {
            animation-delay: calc(var(--uib-speed) * -0.5);
        }

    .dot-spinner__dot:nth-child(6) {
        transform: rotate(225deg);
    }

        .dot-spinner__dot:nth-child(6)::before {
            animation-delay: calc(var(--uib-speed) * -0.375);
        }

    .dot-spinner__dot:nth-child(7) {
        transform: rotate(270deg);
    }

        .dot-spinner__dot:nth-child(7)::before {
            animation-delay: calc(var(--uib-speed) * -0.25);
        }

    .dot-spinner__dot:nth-child(8) {
        transform: rotate(315deg);
    }

        .dot-spinner__dot:nth-child(8)::before {
            animation-delay: calc(var(--uib-speed) * -0.125);
        }

@keyframes pulse0112 {
    0%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}
/**-----------------------------------------------Session Timeout-----------------------------------------------**/
.top {
    margin-top: 30px;
}

.container1 {
    margin: 0 auto;
    position: relative;
    width: 250px;
    height: 250px;
    margin-top: -40px;
}

.ghost {
    width: 50%;
    height: 53%;
    left: 25%;
    top: 10%;
    position: absolute;
    border-radius: 50% 50% 0 0;
    background: #ededed;
    border: 1px solid #bfc0c0;
    border-bottom: none;
    animation: float 2s ease-out infinite;
}

.ghost-copy {
    width: 50%;
    height: 53%;
    left: 25%;
    top: 10%;
    position: absolute;
    border-radius: 50% 50% 0 0;
    background: #ededed;
    border: 1px solid #bfc0c0;
    border-bottom: none;
    animation: float 2s ease-out infinite;
    z-index: 0;
}

.face {
    position: absolute;
    width: 100%;
    height: 60%;
    top: 20%;
}

.eye,
.eye-right {
    position: absolute;
    background: #585959;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    top: 40%;
}

.eye {
    left: 25%;
}

.eye-right {
    right: 25%;
}

.mouth {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 10px;
    height: 10px;
    border: 3px solid;
    border-radius: 50%;
    border-color: transparent #585959 #585959 transparent;
    transform: rotate(45deg);
}

.one,
.two,
.three,
.four {
    position: absolute;
    background: #ededed;
    top: 85%;
    width: 25%;
    height: 23%;
    border: 1px solid #bfc0c0;
    z-index: 0;
}

.one {
    border-radius: 0 0 100% 30%;
    left: -1px;
}

.two {
    left: 23%;
    border-radius: 0 0 50% 50%;
}

.three {
    left: 50%;
    border-radius: 0 0 50% 50%;
}

.four {
    left: 74.5%;
    border-radius: 0 0 30% 100%;
}

.shadow {
    position: absolute;
    width: 30%;
    height: 7%;
    background: #bfc0c0;
    left: 35%;
    top: 80%;
    border-radius: 50%;
    animation: scale 2s infinite;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    50% {
        transform: translateY(15px);
    }
}

.bottom {
    margin-top: 10px;
}

/*text styling*/
.top h1 {
    font-family: "Abril Fatface", serif;
    color: #ededed;
    text-align: center;
    font-size: 9em;
    margin: 0;
    text-shadow: -1px 0 #bfc0c0, 0 1px #bfc0c0, 1px 0 #bfc0c0, 0 -1px #bfc0c0;
}

.top h3 {
    font-family: "Lato", sans-serif;
    font-size: 2em;
    text-transform: uppercase;
    text-align: center;
    color: #bfc0c0;
    margin-top: -20px;
    font-weight: 900;
}

.bottom p {
    text-align: center;
    font-family: "Lato", sans-serif;
    color: #585959;
    font-size: 0.9em;
    margin-top: -20px;
    text-transform: uppercase;
}

.search {
    text-align: center;
}

.buttons1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

/*search style*/
.search-bar {
    border: 1px solid #bfc0c0;
    padding: 5px;
    height: 20px;
    margin-left: -30px;
    width: 200px;
    outline: none;
}

    .search-bar:focus {
        border: 1px solid #d3deea;
    }

.search-btn {
    position: absolute;
    width: 30px;
    height: 32px;
    border: 1px solid #bfc0c0;
    background: #bfc0c0;
    text-align: center;
    color: #ededed;
    cursor: pointer;
    font-size: 1em;
    outline: none;
}

    .search-btn:hover {
        background: #ededed;
        border: 1px solid #ededed;
        color: #bfc0c0;
        transition: all 0.2s ease;
    }

.btn {
    background: #dd0c0c;
    padding: 8px 10px;
    margin: 5px;
    color: #fff;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 1px;
    border: 0;
    cursor: pointer;
}

    .btn:hover {
        background: #bfc0c0;
        transition: all 0.4s ease-out;
    }
#background {
    background-color: #d3deea;
    height: 727px;
    width: 100%;
    margin-top: -30px;
    padding-top:50px;
}
.pop_flex{
    display:flex;
    gap:10px;
    margin-left:100px;
}

#rplytovgilanceobservtion_0 {
    min-width: 800px;
}

#rplytovgilanceobservtion_1 {
    min-width: 800px;
}

#rplytovgilanceobservtion_2 {
    min-width: 800px;
}

#rplytovgilanceobservtion_3 {
    min-width: 800px;
}

#rplytovgilanceobservtion_4 {
    min-width: 800px;
}

.btn_add1{
    margin:0px 0px 0px 710px;
}
.month_add {
    margin: 0px 0px 0px 70px;
}

/* AdminCsrDdugky.css */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .data-table th,
    .data-table td {
        border: 1px solid #ccc;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }

    .data-table th {
        background-color: #c4c6ff;
        font-weight: bold;
    }

    .data-table ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .data-table ul li {
            text-align: left;
            padding: 2px 6px;
            font-size: 13px;
        }

.save-section button {
    margin: 15px 0px 0px 725px;
}