/* .popconfirm {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .popconfirm-content {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: fadeIn 0.3s ease-in-out;
            width: 90%;
            max-width: 400px;
            box-sizing: border-box;
            position: relative;
        }

        .checkmark {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: inline-block;
            stroke-width: 3;
            stroke: #000000;
            stroke-miterlimit: 10;
            box-shadow: inset 0px 0px 0px #4CAF50;
            animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
            position: relative;
            margin-bottom: 15px;
        }

        .checkmark__circle {
            stroke: #4CAF50;
            stroke-width: 2;
            fill: none;
        }

        .checkmark__check {
            transform-origin: 50% 50%;
            stroke-dasharray: 48;
            stroke-dashoffset: 48;
            animation: stroke 0.5s cubic-bezier(0.65, 0, 0.45, 1) forwards;
            fill: none;
        }

        @keyframes stroke {
            100% { stroke-dashoffset: 0; }
        }

        @keyframes scale {
            0%, 100% { transform: none; }
            50% { transform: scale3d(1.1, 1.1, 1); }
        }

        @keyframes fill {
            100% { box-shadow: inset 0px 0px 0px 30px #4CAF50; }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .popconfirm-content h2 {
            margin: 10px 0 15px;
            color: #000000;
            font-size: 1.5rem;
        }

        .popconfirm-content p {
            color: #000000;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .popconfirm-content button {
            background: #4CAF50;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .popconfirm-content button:hover {
            background: #43a047;
        }

        @media (max-width: 600px) {
            .popconfirm-content {
                padding: 15px;
                width: 95%;
            }

            .checkmark {
                width: 50px;
                height: 50px;
            }

            .popconfirm-content h2 {
                font-size: 1.2rem;
            }

            .popconfirm-content p {
                font-size: 0.9rem;
            }

            .popconfirm-content button {
                padding: 6px 15px;
                font-size: 0.8rem;
            }
        } */

         .popconfirm {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay */
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 10000; /* Higher z-index to ensure it appears above other elements */
    }

    .popconfirm-content {
      background: white;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      animation: fadeIn 0.3s ease-in-out;
      width: 90%;
      max-width: 400px;
      box-sizing: border-box;
    }

    .checkmark {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: inline-block;
      stroke-width: 3;
      stroke: #000000;
      stroke-miterlimit: 10;
      box-shadow: inset 0px 0px 0px #4CAF50;
      animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
      margin-bottom: 15px;
    }

    .checkmark__circle {
      stroke: #4CAF50;
      stroke-width: 2;
      fill: none;
    }

    .checkmark__check {
      transform-origin: 50% 50%;
      stroke-dasharray: 48;
      stroke-dashoffset: 48;
      animation: stroke 0.5s cubic-bezier(0.65, 0, 0.45, 1) forwards;
      fill: none;
    }

    @keyframes stroke {
      100% { stroke-dashoffset: 0; }
    }

    @keyframes scale {
      0%, 100% { transform: none; }
      50% { transform: scale3d(1.1, 1.1, 1); }
    }

    @keyframes fill {
      100% { box-shadow: inset 0px 0px 0px 30px #4CAF50; }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    .popconfirm-content h2 {
      margin: 10px 0 15px;
      color: #333;
      font-size: 1.5rem;
    }

    .popconfirm-content p {
      color: #555;
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .popconfirm-content button {
      background: #4CAF50;
      color: white;
      border: none;
      padding: 8px 20px;
      border-radius: 6px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .popconfirm-content button:hover {
      background: #43a047;
    }

    @media (max-width: 600px) {
      .popconfirm-content {
        padding: 15px;
        width: 95%;
      }

      .checkmark {
        width: 50px;
        height: 50px;
      }

      .popconfirm-content h2 {
        font-size: 1.2rem;
      }

      .popconfirm-content p {
        font-size: 0.9rem;
      }

      .popconfirm-content button {
        padding: 6px 15px;
        font-size: 0.8rem;
      }
    }