.confirm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.5); // dark semi-transparent
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;

  .confirm-modal {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    width: 480px;
    max-width: 480px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    min-height: 174px;
    line-height: 20px;
    display: grid;
    gap: 10px;

    .confirm-modal-header {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
      .title {
        font-size: 18px;
        font-weight: 700;
        color: #101828;
      }
    }
    .confirm-modal-body {
      .message {
        font-size: 14px;
        color: #475467;
        text-align: left;
        padding-block-end: 16px;
      }
    }
    .shp-type {
      display: flex;
      gap: 24px;
      padding: 24px;
      border: 1px solid var(--_gray-200);
      border-radius: 6px;
      margin-block-end: 24px;
      label {
        display: flex;
        gap: 8px;
        cursor: pointer;
        align-items: center;
        position: relative;

        input[type="radio"] {
          appearance: none;
          width: 16px;
          height: 16px;
          border: 2px solid var(--_gray-300);
          border-radius: 50%;
          position: relative;
          transition: all 0.2s ease-in-out;
          cursor: pointer;
          background-color: transparent;

          &:checked {
            border-color: var(--_primary-400);
            background-color: var(--_primary-400); // Changed from white for visibility

            &::after {
              content: "";
              position: absolute;
              top: 1px;
              left: 1px;
              width: 10px;
              height: 10px;
              background: var(--_base-white);
              border-radius: 50%;
            }
          }
        }

        span {
          font-size: 14px;
          color: #333;
        }
      }
    }

    .actions {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      height: 40px;
      button {
        height: 40px;
        width: 204px;
        // font-size: 16px;
        cursor: pointer;
        border: none;
        // border-radius: 5px;
      }
      .cancel-button {
        background: transparent;
        color: #6b7280;
        font-weight: 500;
        &:hover {
          border: 1px solid #d0d5dd;
        }
      }
      .confirm-button {
        color: #ffffff;
        font-weight: 600;
      }

      .confirmation-button {
        background-color: #dc2626; // red-600
        color: #ffffff;
        border-radius: var(--_sf-hr-br-rs, var(--_thm-py-bs-dt-se-br-rs));
        &:hover {
          background-color: #b91c1c;
        }
      }

      .primaryConfirmation-button {
        background-color: #162578; // red-600

        &:hover {
          background-color: #101c5f;
        }
      }
    }
  }
}
