      .image-to-place-glow{
        border: 2px solid orange !important;
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.7); 
      }

      .glowing-border {
       animation: glowing 2s infinite; /* Adjust the animation duration as needed */
     }

     .border-red-line{
        border: 1px solid red !important;
     }

     .error-shake {
      border: 3px solid red !important;
      animation: shake 0.4s;

    }

    .select2-error-radius {
       border-radius: 5px;

    }

    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
      20%, 40%, 60%, 80% { transform: translateX(5px); }
    }

    @keyframes glowing {
      from {
        border-color: green; /* Initial color of the curve */
        box-shadow: 0 0 10px 0px green; /* Adjust the glow color and blur as needed */
      }
      to {
        border-color: transparent; /* Transparent color to create the glowing effect */
        box-shadow: 0 0 20px 10px transparent; /* Adjust the glow color and blur as needed */
      }
    }

 