        

        #overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(5px);
            /* Adjust the blur amount to match the body */
            z-index: 1100;
        }

        #popup-container {
            display: none;
            position: fixed;
            top: 50%;
            color: #fff;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60%;
            background-color: #000060;
            padding: 18px;
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
            z-index: 999;
            max-height: 90vh;
            /* Set the maximum height of the popup */
            overflow-x: hidden; 
            overflow-y: auto;
            border-radius: 8px;
        }

        #popup-container::-webkit-scrollbar {
            width: 0.5em;
        }

        #popup-container::-webkit-scrollbar-thumb {
            background-color:#979797;
            border-radius: 10px;
        }

        #popup-container::-webkit-scrollbar-track {
            background-color: #465b97;
        }

        #popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            color: #000;
        }

        #popup-form label {
            display: block;
            margin-bottom: 12px;
        }

        #popup-form input,
        #popup-form select {
            width: calc(100% - 80px);
            /* Adjusted width to allow for padding */
            padding: 20px;
            margin-bottom: 35px;
            box-sizing: border-box;
            font-size: 16px;
            /* Increased font size */
            border: 1px solid #a3a3a3;
            border-radius: 5px;
        }

        #popup-form button {
            padding: 14px;
            background-color: #e7374e;
            color: #fff;
            border: none;
            width: 180px;
            margin-left: 315px;
            cursor: pointer;
            font-size: 16px;
            /* Increased font size */
            border-radius: 5px;
        }

        .id {
            display: flex;
            gap: 26px;
        }
        input:focus{
             border-color: lightgrey;
        }

        .id select {
            order: -1;
            /* Move the select to the left */
            flex-grow: 2;
            /* Allow it to grow to take available space */
        }
          #idd{
            display: flex;
            flex-direction: row;
            align-items:center;
            width: 15%;
            margin-left: -5px;
            gap: 15px;
          }
          .lab{
              position:relative;
              bottom:10px;
          }
          #popup-form{
            font-size: 20px;
          }
          #oi{
            width: 58.3%;
          }
          
          @media screen and (max-width: 600px) {
            #popup-form input,
        #popup-form select {
            font-size: 15px;
            width: 96%;
            margin-left: 9px;
        }
         #popup-form{
            font-size: 15px;
          }
          #employed #salaried{
          }
         
          #idd{
            width: 74%;
            padding-left: -10px;
            padding-right: -20px;
          }
          .id {
            display: inline;
        }
         #popup-form button {
          width: 96%;
          margin-left: 9px;
        }
         #popup-container{
            width:95%
         }
       
    }

